Mysql
 sql >> Base de données >  >> RDS >> Mysql

Comment obtenir la liste des articles et les balises associées avec le plus petit nombre de requêtes

Si vous indexez $tagsResult par postId , ce que vous pouvez faire en utilisant FETCH_GROUP , vous pouvez alors supprimer la boucle interne imbriquée et saisir toutes les balises avec un certain postId en temps constant :

$sql = "
    SELECT pt.idPost, — select idPost first so it’s grouped by this col
           t.*
      FROM tags t JOIN poststags pt ON t.id=pt.idTag 
     WHERE pt.idPost IN (array of post ids)
";

$stmt=$db->prepare($sql);
$stmt->execute();

$tagsResult = $smt->fetchAll(\PDO::FETCH_GROUP|\PDO::FETCH_OBJ);
//$tagsResult is now grouped by postId
//see https://stackoverflow.com/questions/5361716/is-there-a-way-to-fetch-associative-array-grouped-by-the-values-of-a-specified-c

foreach($postsResult as &$post) {

    if(isset($tagsResult[$post->id])) {
        $post->tags = $tagsResult[$post->id];
    }
    else {
        $post->tags = array();
    }   
}