首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

求更改sql语句让他不报错

2013-06-19 
求改动sql语句让他不报错select a.cs, a.COUNT(*)as A表 ,b.COUNT(*) as B表,c.COUNT(*) as C表 fro

求改动sql语句让他不报错
select a.cs, a.COUNT(*)as 'A表' ,b.COUNT(*) as 'B表',c.COUNT(*) as 'C表' 
from A as a ,B as b, C as c where a.cs='a' or a.cs='b' or a.cs='c' group by a.cs
你是想统计A,B,C表的记录数,你那语法都有问题


select cs,A表,B表,C表
from
(select count(*) as 'A表' from b)b,
(select count(*) as 'B表' from c)c,
(select cs,count(*) as 'C表' from a where a.cs in('a','b','c') group by cs)a

热点排行