select * from test where name ='%a' -------------查询name为 %a的数据
模糊查询 select * from test where name like '%\%a%' -----------模糊查询name中包含 %a的数据
应该是这样的::select name,brand_id,concat(floor((sum(goods_num)/(select sum(goods_num) from tablename))*100),'%') as goods_num_rate
from tablename group by name
这样的SQL语句我不是很清楚,我给你提一个笨点的方法吧,比方说程序语言是PHP,
先用COUNT语句,统计数据表或者数据表里符合条件的总条数,
比方说得到 100,然后乘以 0.05,最终用 $limits = intval(100*0.05)得到整数
再加到SQL语句中:
"select *from table_name order by Project_num desc limit 0, $limits"
"select *from table_name order by Project_num asc limit 0, $limits"
这样子,呵呵。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)