Answer:
It depends on the type of database:
MySQL, Postgres: ... LIMIT 10
MS-SQL: SELECT TOP 10 ...
Oracle: WHERE ROWNUM<=10
Step-by-step explanation:
There is no single answer because the syntax is different across database vendors.
6.7m questions
8.8m answers