NOT IN の代わりに以下のクエリで NOT EXIST を使用したい。
Select * From Currencymaster Where Currencycode Not In ('USD');
私は次のように書いてみました:
Select currencycode from currencymaster where not exists (select currencycode from currencymaster where currencycode='USD');
これが正しいかどうかはわかりません。それは私に何の結果ももたらさないからです。
確認するか、書き直すように案内してください。ありがとう