做一张表的数据统计 sqlserver2008数据库报错 关键字 'from' 附近有语法错误。
发布网友
发布时间:2022-04-12 14:02
我来回答
共1个回答
热心网友
时间:2022-04-12 15:31
给子查询加个别名就可以了。
select a.org,a.baogao from (select proce_pjname as org,ISNULL((select sum(proce_amount) from T_proce b where Proce_type='报告' and b.Proce_pjname=a.Proce_pjname group by a.Proce_pjname),0)) as baogao from T_proce a group by Proce_pjname) a