Login
Remember
Register
Ask a Question
How to display top 50 rows in MYSQL?
0
votes
asked
Jan 15, 2024
in
Sql
by
AdilsonLima
How to display top 50 rows in MYSQL?
mysql-interview-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 15, 2024
by
AdilsonLima
In MySql, top 50 rows are displayed by using this following query:
SELECT * FROM
LIMIT 0,50;
...