怎么让mysql查询的时候隔5个数据出现一次
时间:2011-07-26
来源:互联网
比如有这个数据库
id:1 |||| content:11111
id:2 |||| content:112222
id:3 |||| content:3333
id:4 |||| content:444
id:5 |||| content:5555
id:6 |||| content:666
id:7 |||| content:7777
id:8 |||| content:8888
id:9 |||| content:999999
id:10 |||| content:101010101
10个数据,现在我想显示其中的50%数据。
id:1 |||| content:112222
id:3 |||| content:444
id:5 |||| content:666
id:7 |||| content:8888
id:9 |||| content:101010101
就这样
如果我想显示30%数据
id:1 |||| content:11111
id:4 |||| content:444
id:7 |||| content:7777
id:10 |||| content:101010101
这就是 我的目的 。并且这个比例我是要可以调的,有没有高手有好的办法。谢谢各位大侠了。在线等
请高手给出语句 谢谢了
id:1 |||| content:11111
id:2 |||| content:112222
id:3 |||| content:3333
id:4 |||| content:444
id:5 |||| content:5555
id:6 |||| content:666
id:7 |||| content:7777
id:8 |||| content:8888
id:9 |||| content:999999
id:10 |||| content:101010101
10个数据,现在我想显示其中的50%数据。
id:1 |||| content:112222
id:3 |||| content:444
id:5 |||| content:666
id:7 |||| content:8888
id:9 |||| content:101010101
就这样
如果我想显示30%数据
id:1 |||| content:11111
id:4 |||| content:444
id:7 |||| content:7777
id:10 |||| content:101010101
这就是 我的目的 。并且这个比例我是要可以调的,有没有高手有好的办法。谢谢各位大侠了。在线等
请高手给出语句 谢谢了
作者: loveifa 发布时间: 2011-07-26
select * from 这个数据库 where id % 2 = 1
select * from 这个数据库 where id % 3 = 1
select * from 这个数据库 where id % 3 = 1
作者: ACMAIN_CHM 发布时间: 2011-07-26
哥们 如果我要显示80%的数据怎么做呢
引用 1 楼 acmain_chm 的回复:
select * from 这个数据库 where id % 2 = 1
select * from 这个数据库 where id % 3 = 1
select * from 这个数据库 where id % 2 = 1
select * from 这个数据库 where id % 3 = 1
作者: loveifa 发布时间: 2011-07-26
引用 2 楼 loveifa 的回复:
哥们 如果我要显示80%的数据怎么做呢
引用 1 楼 acmain_chm 的回复:
select * from 这个数据库 where id % 2 = 1
select * from 这个数据库 where id % 3 = 1
哥们 如果我要显示80%的数据怎么做呢
引用 1 楼 acmain_chm 的回复:
select * from 这个数据库 where id % 2 = 1
select * from 这个数据库 where id % 3 = 1
select * from 这个数据库 where id % 2 = 1 and limit 0 and 80
作者: jaylongli 发布时间: 2011-07-26
引用哥们 如果我要显示80%的数据怎么做呢
建议把问题一次提完!select * from 这个数据库 where id % 5 != 0
作者: ACMAIN_CHM 发布时间: 2011-07-26
相关阅读 更多
热门阅读
-
office 2019专业增强版最新2021版激活秘钥/序列号/激活码推荐 附激活工具
阅读:74
-
如何安装mysql8.0
阅读:31
-
Word快速设置标题样式步骤详解
阅读:28
-
20+道必知必会的Vue面试题(附答案解析)
阅读:37
-
HTML如何制作表单
阅读:22
-
百词斩可以改天数吗?当然可以,4个步骤轻松修改天数!
阅读:31
-
ET文件格式和XLS格式文件之间如何转化?
阅读:24
-
react和vue的区别及优缺点是什么
阅读:121
-
支付宝人脸识别如何关闭?
阅读:21
-
腾讯微云怎么修改照片或视频备份路径?
阅读:28