当子查询具有聚合功能时,我遇到了一个带有插入(Oracle 12.2)的奇怪错误。子查询本身运行良好,但是当我将其放在插入语句中时,oracle给出了错误。我还发现它与插入表中的标识列(在下面的示例中为TESTLOGEVENT.evID)有关,因为如果删除该列,所有插入查询都可以正常工作!
create table testitems as
(select 1 itemid, 'x001' trackingid from dual union all select 2,'x001' from dual);
create table testlogevent(
evType varchar(50), evDesc varchar2(1000), userID varchar2(30), evDate date,
evID NUMBER(8) Generated as Identity);
insert into testlogevent(evType, evDesc, userid, evDate)
select 'testevent', max(itemid), :UserID, sysdate
from testitems where trackingid='x001';
>>> ORA-00937:不是单组分组功能
select子查询本身可以正常工作!我试图通过在子查询中添加不必要的GROUP BY来重写它,以查看是否可行。
insert into testlogevent(evType, evDesc, userid, evDate)
select 'testevent', max(itemid), :UserID,sysdate
from testitems where trackingid='x001' group by 'x001'
>>> ORA-00979:不是GROUP BY表达式
现在,Oracle用ORA-00979打了我一下。但是,再次,子查询本身可以正常工作。
最终,当我使用CTE重新编写(第一个插入查询)时,这次Oracle没有抱怨,并且插入有效!这里发生了什么?
insert into testlogevent(evType, evDesc, userid, evDate)
with x as (
select 'testevent', max(itemid), :UserID,sysdate
from testitems where trackingid='x001')
select * from x;
>>>插入了1行