首页 > 数据库技术 > 详细

mysql union出错: "Every derived table must have its own alias"

时间:2019-01-13 18:58:19      阅读:241      评论:0      收藏:0      [点我收藏+]
SELECT count(*) from (SELECT province_code as area_id, count(*) from t_cas_rural_selected GROUP BY province_code
UNION all SELECT city_code as area_id, COUNT(*) from t_cas_rural_selected GROUP BY city_code
UNION all SELECT county_code as area_id, COUNT(*) from t_cas_rural_selected GROUP BY county_code) 
as tTotal

如上,后面加个 as tablename 就可以了,例如:"as tTotal"

mysql union出错: "Every derived table must have its own alias"

原文:https://www.cnblogs.com/chenmz1995/p/10263422.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!