v.18.12Improvement
Using SELECT TOP n as an Alternative to LIMIT
You can use theSELECT TOP nsyntax as an alternative forLIMIT. #2840
Why it matters
This feature provides users with a more familiar and potentially clearer syntax for limiting the number of rows returned in a query, especially for those coming from other SQL dialects whereTOP is commonly used.How to use it
Instead of usingLIMIT n, simply use SELECT TOP n at the beginning of your query. For example:SELECT TOP 10 * FROM table_name