1、select
select * from TABLE limit 5,10;返回第6-15行数据
select * from TABLE limit 5;返回前5行
select * from TABLE limit 0,5; 返回前5行
mysql的一些语句
发表评论
1、select
select * from TABLE limit 5,10;返回第6-15行数据
select * from TABLE limit 5;返回前5行
select * from TABLE limit 0,5; 返回前5行