select id
from table
where name not exists(select 1
from table
where name = 'aaa')
也許妳看不懂這個1的意思,不過在使用EXISTS的時候,通常都會使用1,它代表所查詢出來的集合,等同於select name。
整個例子的意思是:查詢name不等於aaa的所有ID。
不明白再問我,謝謝!
select id
from table
where name not exists(select 1
from table
where name = 'aaa')
也許妳看不懂這個1的意思,不過在使用EXISTS的時候,通常都會使用1,它代表所查詢出來的集合,等同於select name。
整個例子的意思是:查詢name不等於aaa的所有ID。
不明白再問我,謝謝!