Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
How to display top 50 rows in MYSQL?
Home
Sql
How to display top 50 rows in MYSQL?
asked
Jan 15
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
by
AdilsonLima
In MySql, top 50 rows are displayed by using this following query:
SELECT * FROM
LIMIT 0,50;
...