I think my title is not a question.
The application I develop inserts data pertaining to the last backup into a table once a month. This table contains the backup instance code, the given insert and the number of bytes.
The problem is that I do not know a command or a way to do a SQL SELECT that only brings the last results of each backup.
Tenho isso
backup bytes data
'x' 30 '21/12/14'
'x2' 1200 '14/10/14'
'x2' 3500 '14/12/14'
'x2' 4800 '14/01/15'
Mas preciso somente dos últimos
backup bytes data
'x' 30 '21/12/14'
'x2' 4800 '14/01/15'
I'm pretty much in SQL, but any information is already of great value.