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.
私が書く場合:
SELECT * FROM users WHERE themes LIKE '%3%'
フィールドthemes = '1, 2, 3, 4, 5'から、正しい書き方'%3' or '3%' or '%3%'
ユーザーがこれらのテーマのいずれかを選択したかどうかを確認するだけです
使用するFIND_IN_SET
FIND_IN_SET
SELECT * FROM users WHERE FIND_IN_SET(3, themes) <> 0