How to limit the results on a SQL query

前端 未结 5 1808
生来不讨喜
生来不讨喜 2020-12-19 06:38

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 
5条回答

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.

提交回复
热议问题