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

LEFT JOIN-Reihenfolge und Limit

Versuchen Sie zu ersetzen:

LEFT JOIN ps a ON a.account_id = fr.author

mit:

LEFT JOIN ps a 
  ON a.PrimaryKey                         --- the Primary Key of ps
     = ( SELECT b.PrimaryKey 
         FROM ps AS b 
         WHERE b.account_id = fr.author
         ORDER BY b.level DESC
         LIMIT 1
       )