开发者

Help with MS Access queries

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

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜