我有一个元密钥 _student_registration_data
存储在wordpress数据库中,元值作为序列化数组,如下所示:
a:9:{s:4:"name";s:20:"John Doe";s:11:"father_name";s:10:"Arnold";s:4:"cnic";s:13:"5540545612812";s:12:"home_address";s:9:"Scheme-33";s:16:"telephone_number";s:12:"923332654324";s:15:"registration_id";s:6:"08CS68";s:10:"program_id";s:1:"1";s:9:"cohort_id";s:1:"6";s:10:"section_id";s:1:"7";}
现在我想要一个mysql查询或者一些内置的wordpress函数,借助它我可以过滤usermeta行 registration_id
等于 08CS68
.
谢谢。
2条答案
按热度按时间e4yzc0pl1#
你可以提取
registration_id
从字符串中使用SUBSTRING_INDEX
:eivgtgni2#
尼克的回答是关键,但没有解决我的问题。实际效果如下:
特别感谢尼克:)