SQLのnotについてまとめてます。
SQLのnotの構文
SQLのnotは論理否定演算子で、指定した条件を否定します。以下のSQLは、1つ目のクエリがemployees(社員)テーブルを無条件で10件抽出、2つ目のクエリがnotを使ってemp_no(社員番号)が10001以外のデータを抽出しています。
mysql> select * from employees limit 10; +--------+------------+------------+-----------+--------+------------+ | emp_no | birth_date | first_name | last_name | gender | hire_date | +--------+------------+------------+-----------+--------+------------+ | 10001 | 1953-09-02 | Georgi | Facello | M | 1986-06-26 | | 10002 | 1964-06-02 | Bezalel | Simmel | F | 1985-11-21 | | 10003 | 1959-12-03 | Parto | Bamford | M | 1986-08-28 | | 10004 | 1954-05-01 | Chirstian | Koblick | M | 1986-12-01 | | 10005 | 1955-01-21 | Kyoichi | Maliniak | M | 1989-09-12 | | 10006 | 1953-04-20 | Anneke | Preusig | F | 1989-06-02 | | 10007 | 1957-05-23 | Tzvetan | Zielinski | F | 1989-02-10 | | 10008 | 1958-02-19 | Saniya | Kalloufi | M | 1994-09-15 | | 10009 | 1952-04-19 | Sumant | Peac | F | 1985-02-18 | | 10010 | 1963-06-01 | Duangkaew | Piveteau | F | 1989-08-24 | +--------+------------+------------+-----------+--------+------------+ 10 rows in set (0.11 sec) mysql> select * from employees where not emp_no = 10001 limit 10; +--------+------------+------------+-----------+--------+------------+ | emp_no | birth_date | first_name | last_name | gender | hire_date | +--------+------------+------------+-----------+--------+------------+ | 10002 | 1964-06-02 | Bezalel | Simmel | F | 1985-11-21 | | 10003 | 1959-12-03 | Parto | Bamford | M | 1986-08-28 | | 10004 | 1954-05-01 | Chirstian | Koblick | M | 1986-12-01 | | 10005 | 1955-01-21 | Kyoichi | Maliniak | M | 1989-09-12 | | 10006 | 1953-04-20 | Anneke | Preusig | F | 1989-06-02 | | 10007 | 1957-05-23 | Tzvetan | Zielinski | F | 1989-02-10 | | 10008 | 1958-02-19 | Saniya | Kalloufi | M | 1994-09-15 | | 10009 | 1952-04-19 | Sumant | Peac | F | 1985-02-18 | | 10010 | 1963-06-01 | Duangkaew | Piveteau | F | 1989-08-24 | | 10011 | 1953-11-07 | Mary | Sluis | F | 1990-01-22 | +--------+------------+------------+-----------+--------+------------+ 10 rows in set (0.06 sec)
【関連記事】【SQL】論理否定を知る。NOTの作用と使い方についてカンタン解説
なお、単一のカラムを否定(not equal)する条件を記述する場合は、!=を使う方法もあります。
select * from employees where emp_no != 10001 limit 10;
同様に、<>を使っっても、値の否定が可能です。
select * from employees where emp_no <> 10001 limit 10;
notは、どちらかというと複雑な条件式や、existsやinのようなサブクエリに使う演算子と組み合わせるケースが多いですね。
【関連記事】
▶SQLで「~以外」を指定するには、NOT(否定)とサブクエリの組み合わせ
not betweenで、範囲を否定条件
notとbetweenを組み合わせてい、「指定した範囲以外」を条件指定する例です。employees(社員)テーブルから、社員番号が10001~11000以外の社員データを抽出しています。
mysql> select * from employees where emp_no not between 10001 and 11000 limit 10; +--------+------------+-------------+-------------+--------+------------+ | emp_no | birth_date | first_name | last_name | gender | hire_date | +--------+------------+-------------+-------------+--------+------------+ | 11001 | 1956-04-16 | Baziley | Buchter | F | 1987-02-23 | | 11002 | 1952-02-26 | Bluma | Ulupinar | M | 1996-12-23 | | 11003 | 1960-11-13 | Mariangiola | Gulla | M | 1987-05-24 | | 11004 | 1954-08-05 | JoAnna | Decleir | F | 1992-01-19 | | 11005 | 1958-03-12 | Byong | Douceur | F | 1986-07-27 | | 11006 | 1962-12-26 | Christoper | Butterworth | F | 1989-08-02 | | 11007 | 1962-03-16 | Olivera | Maccarone | M | 1991-04-11 | | 11008 | 1962-07-11 | Gennady | Menhoudj | M | 1988-09-18 | | 11009 | 1954-08-30 | Alper | Axelband | F | 1986-09-09 | | 11010 | 1963-03-20 | Jaques | Narwekar | F | 1986-12-18 | +--------+------------+-------------+-------------+--------+------------+ 10 rows in set (0.00 sec)
notとNULLの組み合わせに注意
「NULLではない」条件を指定するために、not emp_no = NULL という条件を指定しても、想定通りになりません。MySQLでは、空の結果(Empty set)が返ってきてしまいました。
NULLではない条件は、is not NULLを指定しましょう。
mysql> select * from employees where not emp_no = NULL limit 10; Empty set (0.00 sec) mysql> select * from employees where emp_no is not NULL limit 10; +--------+------------+------------+-----------+--------+------------+ | emp_no | birth_date | first_name | last_name | gender | hire_date | +--------+------------+------------+-----------+--------+------------+ | 10001 | 1953-09-02 | Georgi | Facello | M | 1986-06-26 | | 10002 | 1964-06-02 | Bezalel | Simmel | F | 1985-11-21 | | 10003 | 1959-12-03 | Parto | Bamford | M | 1986-08-28 | | 10004 | 1954-05-01 | Chirstian | Koblick | M | 1986-12-01 | | 10005 | 1955-01-21 | Kyoichi | Maliniak | M | 1989-09-12 | | 10006 | 1953-04-20 | Anneke | Preusig | F | 1989-06-02 | | 10007 | 1957-05-23 | Tzvetan | Zielinski | F | 1989-02-10 | | 10008 | 1958-02-19 | Saniya | Kalloufi | M | 1994-09-15 | | 10009 | 1952-04-19 | Sumant | Peac | F | 1985-02-18 | | 10010 | 1963-06-01 | Duangkaew | Piveteau | F | 1989-08-24 | +--------+------------+------------+-----------+--------+------------+ 10 rows in set (0.00 sec)
まとめ
- notは条件を指定する。単一項目なら、!=や<>が使用可能。
- notはexistsやinなどサブクエリに対する演算子と組み合わせて利用することが多い
- notとNULLを組み合わせるケースでは要注意。NULLではない条件は、is not NULLを使用