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

Récupération de la dernière note (par horodatage) en une seule requête à partir d'une table 1:n

 select users.name, notes.subject, notes.heading, notes.body
 from users, notes
 where users.id = notes.user_id
 and notes.timestamp = (select max(timestamp) from notes where user_id = users.id)