in Sql by
How to display top 50 rows in MYSQL?

1 Answer

0 votes
by
In MySql, top 50 rows are displayed by using this following query:

SELECT * FROM
LIMIT 0,50;
...