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.
ここのよう where (1,2,3) match (column2)にcolumn2自体をコンマで区切った文字列であるかどうかを確認する必要があります。column2に値がある場合は、その行を取得する必要があります。前もって感謝します。
where (1,2,3) match (column2)
MySQL のIN演算子を使用します。
IN
WHERE column2 IN (1,2,3)