关于数据库不是单组分组函数的问题,求oracle牛人帮忙啊!!
selectsum(a.price),sum(a.tksum),count(*),(selectcount(*)fromartificialticketsbwhereb....
select sum(a.price),
sum(a.tksum),
count(*),
(select count(*) from artificialtickets b where b.tkstatusid = 2)
from artificialtickets a
where a.operid = 199
and a.tktpyeid = 2
and a.drvdate = to_date('2011-10-31', 'yyyy-mm-dd');
都是同张表 那子查询 我是想再查比下面多了个约束条件的统计,但是这样就报:不是单组分组函数!可有什么办法解决吗,我是想在同一条语句中的! 展开
sum(a.tksum),
count(*),
(select count(*) from artificialtickets b where b.tkstatusid = 2)
from artificialtickets a
where a.operid = 199
and a.tktpyeid = 2
and a.drvdate = to_date('2011-10-31', 'yyyy-mm-dd');
都是同张表 那子查询 我是想再查比下面多了个约束条件的统计,但是这样就报:不是单组分组函数!可有什么办法解决吗,我是想在同一条语句中的! 展开
2个回答
展开全部
select * from(
select sum(a.price),
sum(a.tksum),
count(*)
from artificialtickets a
where a.operid = 199
and a.tktpyeid = 2
and a.drvdate = to_date('2011-10-31', 'yyyy-mm-dd')),
(select count(*) from artificialtickets b where b.tkstatusid = 2)
我理解的意思就是你还是要查到一行 移到下面就行了
select sum(a.price),
sum(a.tksum),
count(*)
from artificialtickets a
where a.operid = 199
and a.tktpyeid = 2
and a.drvdate = to_date('2011-10-31', 'yyyy-mm-dd')),
(select count(*) from artificialtickets b where b.tkstatusid = 2)
我理解的意思就是你还是要查到一行 移到下面就行了
追问
这个可行,不过下面的还是要有外层的查询条件的,需要再加上!
刚刚请教了下别人,稍作改动可行!
select sum(.),
sum(.),
count(*),
count((select count(*) from artificialtickets b where b.tkstatusid = 2)) //此处套个函数,max(),min()什么的都可以
from artificialtickets a
where a.operid = 199
and a.tktpyeid = 1
and a.drvdate = to_date('2011-10-31', 'yyyy-mm-dd');
光点科技
2023-08-15 广告
2023-08-15 广告
通常情况下,我们会按照结构模型把系统产生的数据分为三种类型:结构化数据、半结构化数据和非结构化数据。结构化数据,即行数据,是存储在数据库里,可以用二维表结构来逻辑表达实现的数据。最常见的就是数字数据和文本数据,它们可以某种标准格式存在于文件...
点击进入详情页
本回答由光点科技提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询