select * from general limit 0,1

select * from table_name limit 第几行,行数
第几行是从0开始的,即0代表第一行。
比如:你想取第二行
select * from table_name limit 1,1

Logo

更多推荐