这是我的实际查询:
$result = mysqli_query($link,"select ids_billets from pref_tags where id='$_GET[id]'");
$tags_ids = $result->fetch_object();
$result = mysqli_query($link,"select id, html from pref_posts where id in ($tags_ids->ids_billets)");
while($posts = $result->fetch_object()) {
.....
}
我在 pref_tags 表 (ids_billets) 的一个 varchar 字段中有 id - 例如:“12,16,158”
有没有更好的方法来查询这个?谢谢