これが私の実際のクエリです:
$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) の 1 つの varchar フィールドに ID があります - 例: "12,16,158"
これを照会するより良い方法はありますか? ありがとう