sql 聚合函数和子查询问题 10
以下有一段错误的语句:selectou.code,ou.name,(selectsum(book.money)fromBookbookwhereuser.code=boo...
以下有一段错误的语句:
select ou.code , ou.name ,
(select sum(book.money) from Book book where user.code = book.userfk) as count1,
(select sum(book2.money) from Book2 book2 where user.code = book2.userfk) as count2
from User user , Ou ou
where user.oufk = ou.code
group by ou.code , ou.name
执行后提示不是group by 函数。
请问怎么用sql语句一句搞定,不要使用存储过程、视图等等其他方法,
不能使用select * from (select ....) group by ou.code, ou.name
谢谢了。 展开
select ou.code , ou.name ,
(select sum(book.money) from Book book where user.code = book.userfk) as count1,
(select sum(book2.money) from Book2 book2 where user.code = book2.userfk) as count2
from User user , Ou ou
where user.oufk = ou.code
group by ou.code , ou.name
执行后提示不是group by 函数。
请问怎么用sql语句一句搞定,不要使用存储过程、视图等等其他方法,
不能使用select * from (select ....) group by ou.code, ou.name
谢谢了。 展开
展开全部
去掉group by 子句就可以了,这里是子查询不是分组查询
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询