0%

SQL NOT EXISTS

參考
MSDN
結論就是,如果單一欄位要篩選掉就用Not IN ```sql
select *
from [order]
where 序號 not in
(
select 訂單編號 from orderDetail
)

1
2
3
4
5
6
7
8
9
如果多個欄位要同時符合才篩選掉,就用Not Exists ```sql
select *
from [order] a
where not exists
(
select 訂單編號 from orderDetail b
where b.訂單編號 = a.序號 and b.購買日期 = (a.民國年+1911)
)