I\'m wondering is it possible to limit the result of a SQL request?
For example, only return up to 50 rows from:
SELECT * FROM
-
2020-12-19 06:49
You could use the TOP clause:
SELECT TOP 50 * FROM
If your database doesn't support it you may try also LIMIT
and ROWNUM
but once again this will depend on the database you are using.