当前位置: 网学 > 编程文档 > MySQL > 正文

mysql order by和union的联合使用

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 13/08/02

【编者按】网学网MySQL频道为大家收集整理了“mysql order by和union的联合使用“提供大家参考,希望对大家有所帮助!

今天在做一个统计报表的时候用到了order by desc排序,结果发现它不能和 union一起使用
Error Code : 1054
Unknown column 't2.count_vod' in 'order clause'
 
原句:
select 'a week upload',count(*)
from update_table
where  date_format(time,'%Y%m%d') = date_format(DATE_ADD(now(),INTERVAL -7 DAY),'%Y%m%d')
union
select 'a week upload title',t1.title,t2.user_count
from update_table as t1 ,update_user as t2
where where  date_format(time,'%Y%m%d') = date_format(DATE_ADD(now(),INTERVAL -7 DAY),'%Y%m%d') and t1.user_count=t2.user_count
order by  t1.user_count desc;
 
利用临时表来解决这个问题
select 'a week upload',count(*)
from update_table
where  date_format(time,'%Y%m%d') = date_format(DATE_ADD(now(),INTERVAL -7 DAY),'%Y%m%d')
union
select * from (select 'a week upload title',t1.title,t2.user_count
from update_table as t1 ,update_user as t2
where where  date_format(time,'%Y%m%d') = date_format(DATE_ADD(now(),INTERVAL -7 DAY),'%Y%m%d') and t1.user_count=t2.user_count
order by  t1.user_count desc) as temp;
 
如果有多个查询结果需要放在一起可以用类似的方式解决

网学推荐

免费论文

原创论文

浏览:
设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号