在mysql中从序列化列中搜索数据

ubof19bj  于 2021-06-20  发布在  Mysql
关注(0)|答案(1)|浏览(220)

我已经创建了名为 user_ids 它存储php序列化的数组值。我需要从这些列中搜索值。我试过了code:-

SELECT *  FROM event_users WHERE user_ids REGEXP '.*;s:[0-9]+:"search value here".*'
xfb7svmp

xfb7svmp1#

SELECT *  FROM event_users WHERE user_ids LIKE '%"search value here"%'

相关问题