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 `table` WHERE COL REGEXP "^([%\w-]+\.(?:jpe?g¦JPE?G¦gif¦GIF¦png¦PNG))$"
私を助けてください
@Thoman列には画像パスが格納されていると思います。その場合、パス全体を照合するのではなく、拡張子が「.jpg」などの列を探すことができます。
SELECT * FROM `table` WHERE col REGEXP '\.(jpe?g|gif|png)'
col次のようなwith値がある場合、 (単語文字式)/tmp/foo.gifとは一致しません。\w+
col
/tmp/foo.gif
\w+
お役に立てれば。