专注收集记录技术开发学习笔记、技术难点、解决方案
网站信息搜索 >> 请输入关键词:
您当前的位置: 首页 > Sybase

sybase有多个left join 跟多个union会报错

发布时间:2010-05-20 14:01:29 文章来源:www.iduyao.cn 采编人员:星星草
sybase有多个left join 和多个union会报错

报错内容:

Adaptive Server cannot perform the requested action because column

'organId' is not within the scope of the joined table expression.Check

your command for missing or incorrect database objects,variable names,

and/or input data.


select ...

from

t1

left join

t2

on t1=t2

left join

(

select ... from t3

union all

select ... from t4

)t5

on t1=t5

这样写会报错。

原因 :Hi, it was a limatation of Sybase in the end when using ANSI sql or at least thats what the DBA's told me. A derived table is seen as an inline view in the SQL BO generates, Sybase can handle that but if the inline view contains a union (so your derived table has a union) and there are 3 or more other tables joined with the SQL it throws this error, works fine if only two tables, or if you break the union up into two derived tables. In the end I created the view on the db. I find Sybase frustrating no decode no MINUS commands icon_neutral.gif 

Thanks

(出自:http://www.forumtopics.com/busobj/viewtopic.php?p=442226)

解决方法:t1和t2联合,t1和t5联合,t5是一个union这样会报错。把t1和t2先联合之后在于t5联合

select t1.* from

(select ...

from

t1

left join

t2

on ...

) t6

left join

(

select ... from t3

union all

select ... from t4

)t5

on t6=t5


友情提示:
信息收集于互联网,如果您发现错误或造成侵权,请及时通知本站更正或删除,具体联系方式见页面底部联系我们,谢谢。

其他相似内容:

热门推荐: