Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Recuperando a nota mais recente (por carimbo de data/hora) em uma única consulta de uma tabela 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)