比如表名叫test。
要查询表中一共有多少条记录
1
select count(*) from test
1
select count(*) from test where id=1
根据的你的需要2个办法。一个是select * from tablename limit N 这个N是你需要显示多少行
一个是select * from tablename limit X,Y. 这个是从X行到Y行,你需要显示多少个。注意在MYSQL第一行的 X =0
欢迎分享,转载请注明来源:内存溢出
比如表名叫test。
要查询表中一共有多少条记录
1
select count(*) from test
1
select count(*) from test where id=1
根据的你的需要2个办法。一个是select * from tablename limit N 这个N是你需要显示多少行
一个是select * from tablename limit X,Y. 这个是从X行到Y行,你需要显示多少个。注意在MYSQL第一行的 X =0
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)