Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Einzelnes SQL zum Abrufen verschiedener Informationen aus verschiedenen Tabellen

Wenn einige Daten in einer der Tabellen nicht vorhanden sind, verwenden Sie stattdessen INNER JOIN Sie sollten LEFT JOIN verwenden :

SELECT content.loc,content.id,content.title,
   -- USE function COALSESCE will show 0 if there are no 
   -- related records in table voting_count
    COALESCE(voting_count.up, 0) as votes_up,  
    COALSESCE(voting_count.down, 0) as voted_down
FROM content LEFT JOIN voting_count 
    ON content.id = voting_count.unique_content_id 
ORDER BY content.id DESC