Answers for "mysql top 2"

SQL
0

mysql select top 2

SELECT x,y 
FROM z 
LIMIT 0,2;
// the first value in limit corresponds to start index, 
// the second value is the number of records to show
Posted by: Guest on July-30-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language