0

Usually (in MySQL) I use query like "select * from table limit 100" to peek the table, but I found it's not supported in DolphinDB. So is there any work around?

Ju Piece
  • 249
  • 3
  • 9

1 Answers1

0

Use top clause in DolphinDB instead.

select top 100 * from table
Davis Zhou
  • 353
  • 4
  • 6