应该怎么写查询语句。。。而且不能删除最后四条数据。。。30个字好烦啊
5条回答 默认 最新
晓呆同学 2015-11-30 15:18关注select * from 表名 A limit 0,(select count(*) from 表名 ) -4;
select * from 表名 A limit 4,(select count(*) from 表名 ) order by id desc;
评论 打赏 举报解决 1无用
select * from 表名 A limit 0,(select count(*) from 表名 ) -4;
select * from 表名 A limit 4,(select count(*) from 表名 ) order by id desc;