1

Does anyone know how to write the where conditions for the first row for dolphindb?

update table set x=100 where ?
Aryan Beezadhur
  • 4,503
  • 4
  • 21
  • 42
M Lewis
  • 11
  • 2

1 Answers1

1

you can use the dolphindb function rowNo:

update t set x=100 where rowNo(x)=0
Bob
  • 137
  • 2
  • 9