Requesting support for "SELECT TOP n from Table"

SethuSrinivasan
New Contributor II

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 * from table1

It is quite common for SQL Server users to use TOP clause in their queries. Can you please add this support to your SQL language?