开发者

Help with MS Access queries

开发者 https://www.devze.com 2023-02-26 03:56 出处:网络
I have an Access database with 2 tables开发者_JS百科 and I would like a query which lists items which are in one table but not the other.select a.*

I have an Access database with 2 tables开发者_JS百科 and I would like a query which lists items which are in one table but not the other.


    select a.* 
    from TableA as a
    left join TableB as b
    on a.Col = b.Col
    where isNull(b.Col)
0

精彩评论

暂无评论...
验证码 换一张
取 消