1.oracle不区分''和null,''就是null
2.fld1 <> null 进一步等于null
解决办法:nvl()函数
select a.guest_vipname,t.mobile,a.guest_viptel from vip_info t,guest_vipinfo a where nvl(a.guest_viptel,' ')!=nvl(t.mobile,' ') and a.guest_vipname=t.name
1.oracle不区分''和null,''就是null
2.fld1 <> null 进一步等于null
解决办法:nvl()函数
select a.guest_vipname,t.mobile,a.guest_viptel from vip_info t,guest_vipinfo a where nvl(a.guest_viptel,' ')!=nvl(t.mobile,' ') and a.guest_vipname=t.name