博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
一个复杂的SQL语句
阅读量:6710 次
发布时间:2019-06-25

本文共 550 字,大约阅读时间需要 1 分钟。

1 SELECT c.*, sum(t.num) as num, b.num as total FROM np_wenjuan_choice as c 2 left join ( 3 select content, count(id) as num 4 from np_wenjuan_answer as a 5 where question_id = 8 6 group by content 7 ) as t on t.content like concat('%',c.index,'%') 8 left join ( 9 select question_id, count(id) as num 10 from np_wenjuan_answer11 where question_id = 812 group by question_id13 ) as b on b.question_id = c.question_id14 where c.question_id = 815 group by title16 order by c.index

 

转载于:https://www.cnblogs.com/reallypride/archive/2012/07/07/2580619.html

你可能感兴趣的文章
axis开发webservice
查看>>
网络系统集成工程师——十八般武艺
查看>>
我的友情链接
查看>>
ping命令加入时间戳并写入文本
查看>>
linux下如何把一个用户加到管理员组
查看>>
CodeForces 483C Diverse Permutation
查看>>
我的友情链接
查看>>
mrtg监控网络流量简单配置
查看>>
解决“连接U8数据库服务器失败”的方法尝试
查看>>
把oracle数据库恢复到某个时间点或者某个scn
查看>>
分组背包问题
查看>>
css的再深入4(更新中···)
查看>>
一道面试题
查看>>
大公司里怎样开发和部署前端代码?
查看>>
如何安装pycharm
查看>>
《Windows Internal》(2)
查看>>
数据监听进阶
查看>>
HTML5之Canvas绘图——图像切割函数clip
查看>>
五、箭头函数
查看>>
阿里Android开发规范:文件与数据库
查看>>