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.
GUIDのコンマ区切りリストを文字列である列と比較する正規表現を使用できますが、以下のような整数でそれを行うのに問題があります。私は何か間違ったことをしていますか、それともこれは不可能ですか?
select * from sims_role where organization_id REGEXP '4929,4930'
おそらくあなたが望む:
select * from sims_role where organization_id REGEXP '^(4929|4930)$'
使用したものは次のものと同じです。
select * from sims_role where organization_id LIKE '%4929,4930%'