whats the code to get:
the latest date from the table rares
if u know what I mean?
Printable View
whats the code to get:
the latest date from the table rares
if u know what I mean?
répeté sil vous plaít
SELECT * FROM tablename ORDER BY identifingcolumn DESC;
Replace tablename with the table name you want to use and replace identifingcolumn with a ID column or date the value was added column.