标签: php mysql laravel
我创建了名为user_ids的表列,它存储了php序列化数组值。我需要从这些列中搜索值。我试过下面的代码: -
user_ids
SELECT * FROM event_users WHERE user_ids REGEXP '.*;s:[0-9]+:"search value here".*'
答案 0 :(得分:1)
SELECT * FROM event_users WHERE user_ids LIKE '%"search value here"%'