IN演算子 SQL
用途
複数の値に一致するレコードを取り出す場合に使用する
使用方法
select * from テーブル名 where カラム名 in ('値1', '値2', '値3', ...);
例 hogeテーブル
id | name | color |
---|---|---|
1 | 山田 | 赤 |
2 | 鈴木 | 青 |
3 | 吉田 | 緑 |
4 | 田中 | 黄 |
5 | 渡辺 | 白 |
6 | 清水 | 黒 |
sql
select * from hoge where color in ('青', '白', '黒');
結果
id | name | color |
---|---|---|
2 | 鈴木 | 青 |
5 | 渡辺 | 白 |
6 | 清水 | 黒 |
この記事は以下の情報を参考にして執筆しました。
Author And Source
この問題について(IN演算子 SQL), 我々は、より多くの情報をここで見つけました https://qiita.com/marukome/items/e7a05fa94a71607caa93著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .