是外连接子句的内部成员。如果表也参与常规连接子句,则不允许这样做

时间:2017-03-26 23:42:03

标签: plsql isql

我有一个以下工作查询:

`select distinct t1.ExNo,
t3.ExDesc
from table1 t1 t1, table2 t2,table3 t3 where 
t1.ExNo *= t2.ExNo and 
t3.ExTyp = case 
    when t1.ExTyp = 'CONTNR'
        and t2.ExTyp is not null
        then t2.ExTyp
    else t1.ExTyp
    end
 order by t1.ExNo;`     

但如果同样的查询修改如下并使用,我收到此错误。你可以纠正:

Cannot find name 'alert'
Cannot find name 'confirm'
Cannot find name 'Event'

错误: 该表是外连接子句的内部成员。如果表也参与常规连接子句,则不允许这样做。

0 个答案:

没有答案