How to select the first N rows from a MySQL table with SQL

2 Answers

0 votes
select * from your_table_name LIMIT 0, 100 

 



answered Oct 9, 2019 by avibootz
0 votes
select * from s4i_search_statistic LIMIT 30 

 



answered Oct 9, 2019 by avibootz

Related questions

3 answers 679 views
2 answers 636 views
1 answer 243 views
1 answer 271 views
1 answer 303 views
...