我想从我的用户表中获取标签 id 存储的数据,例如:
userid tagid
5036 |4815|324|
1396 |1393|4567|
2676 |2669|345|2345|
我有一个 tagid 数组,如 Array ( [0] => 4815 [1] => 4567 )
需要使用 mysql where in condition like 获取数据"select * from user where tagid in ()"
。是否有任何 preg_match 功能?