求一个mysql语句,要求:查询学生表的数据,查询所有信息,列出前25%的记录。
展开全部
select * from tb where rownum <=(select count(*) from tb)*0.25;
select * from tb where rownum <=(select count(*)/4 from tb) ;
select * from tb where rownum <=(select count(*) from tb)/4;
select * from tb where rownum <=(select count(*)/4 from tb) ;
select * from tb where rownum <=(select count(*) from tb)/4;
追问
不行呀,还有没有其它的方法。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
mysql 不支持 rownum, 可以用limit, 但limit只支持整数输入,这样在jsp页面需要两步处理:
1. int n = select floor(0.25*count(*)) from tb;
2. select * form tb where limit 0, n;
1. int n = select floor(0.25*count(*)) from tb;
2. select * form tb where limit 0, n;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询