I have in the database table the index field. In it, when adding a row to a table, I write the date using the mktime() function. Is it possible to make a SELECT from a table, only that row, which has the largest index among all rows, that is, the one added later than all? And if so, how?
ORDER... just sort descendingORDER DESCand take the highest entryLIMIT 1- Alexey Shimansky