Mysql
 sql >> Database >  >> RDS >> Mysql

Come selezionare l'ultimo record dalla tabella MySQL utilizzando la sintassi SQL se è soddisfatta solo una condizione

Il metodo normale consiste nell'ordinare il risultato in ordine DESC e LIMITARE il set di risultati a 1 riga

SELECT Id, dept_id, mat_code, topic
WHERE dept_id = 'something'
ORDER BY Id DESC
LIMIT 1