0 votes
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;

Related questions

0 votes
asked Jan 14 in Sql by AdilsonLima
0 votes
asked Jan 13 in Sql by DavidAnderson
...