📜  mysql select top 2 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:04.609000             🧑  作者: Mango

代码示例1
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