程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle教程 >> Oraclesqlnotin多字段比對示例

Oraclesqlnotin多字段比對示例

編輯:Oracle教程

Oraclesqlnotin多字段比對示例


select * from (select t2.cadastralno parcelid,t1.pkid taxpayerid,t2.taxtype taxtype,t1.booktype taxpayertype,
t2.cadastralno parcelCadastralno,t2.landuser parcelLanduser,t1.payername taxpayerPayername
from grid_sysdb.bss_taxpayers t1,grid_sysdb.bbs_parcel t2,grid_sysdb.djsw_tddjxx t3
where t3.nsrdzdah = t1.pkid and t1.payername = t2.landuser)

where (parcelid,taxpayerid) not in(select p.parcelid,p.taxpayerid from bss_parceltaxpayerrel p)

not in多個字段

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved