oracle查看A表有但B表没有的数据

select  a.* from table_a a left join table_b b on a.字段 = b.字段

where b.字段  is null;

posted on 2022-01-21 11:22  癫狂编程  阅读(2246)  评论(0)    收藏  举报

导航

好的代码像粥一样,都是用时间熬出来的