SYBASE数据库中如何使用外连接
在sql server 下是:
select a.,b. from a left join b on a.id=b.id
在sybase下如何进行外连接
---------------------------------------------------------------
select a.,b. from a , b where a.id*=b.id
如果sybase的版本是11.9.2以上,也支持left join
SYBASE数据库中如何使用外连接
在sql server 下是:
select a.,b. from a left join b on a.id=b.id
在sybase下如何进行外连接
---------------------------------------------------------------
select a.,b. from a , b where a.id*=b.id
如果sybase的版本是11.9.2以上,也支持left join