三
三少
Unregistered / Unconfirmed
GUEST, unregistred user!
有这么一段SQL语句:
select FieldName1,count(*) from table1,table2
where table1.FieldName1=table2.FieldName1 and table1.FieldName2=:test
group by table1.OtherField
其中Test是参数,连接的是Oracle 8.0.5,出现“ORA-00979:不是Group by变量”的提示
如果把test改成常量的话通过连接,但是一样的语句在PB中通过,这是为什么?如何解决?
select FieldName1,count(*) from table1,table2
where table1.FieldName1=table2.FieldName1 and table1.FieldName2=:test
group by table1.OtherField
其中Test是参数,连接的是Oracle 8.0.5,出现“ORA-00979:不是Group by变量”的提示
如果把test改成常量的话通过连接,但是一样的语句在PB中通过,这是为什么?如何解决?