Access 數據庫不支持full outer join嗎?我用(left join) union (right join)來實現外連接功能的,誰有什么好的辦法

  • 主题发起人 chenhaobo
  • 开始时间
C

chenhaobo

Unregistered / Unconfirmed
GUEST, unregistred user!
Access 數據庫不支持full outer join嗎?我用(left join) union (right join)來實現外連接功能的,誰有什么好的辦法呢?(30分)<br />求教了
 
只能如此了!不过union适应注意避免重复的部分。
select * from a left join b on a.id = b.id
union
select * from b left join a on a.id=b.id where isnull(a.id)
 
接受答案了.
 
顶部