ORACLE根据两个表都含有的字段条件来判断两个表连接后有没有数据

a表  字段1 字段2

b表  字段1 字段3

a表的字段1=b表的字段1

select distinct a.字段2 from tabel1  a ,tabel2  b  where  a.字段1 = b.字段1  and a.字段1=’xxx’

(0)
上一篇 2022年3月22日
下一篇 2022年3月22日

相关推荐