In notebook, It looks like if I need to select top N rows, I can rely on "LIMIT" keyword. It would be nice if you can support "TOP" as well
The current approach to select 10 rows:
select * from table1 LIMIT 10
Requesting TOP support:
SELECT TOP 10 *...