Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
mysql で select の大文字と小文字を区別しない IN 操作を行うことはできますか? たとえば、「user」という名前のテーブルとフィールド名 firstName があります。すべての「ジョン、スターク」を見つけたい。
クエリを次のように記述できますか
SELECT firstName FROM user WHERE firstName IN ("JOHN", "STARK")
UPPER(firstName)値の大文字と小文字が問題にならない場合にのみ行うことができますIN。
UPPER(firstName)
IN