Hello.
In the table there is a date field, format: '2016-05-26 15:26:27' how to display the last date value from the table?
I tried to do this:
" SELECT date FROM tab WHERE MAX(date) = date" " SELECT date FROM tab ORDER BY MAX(date)" " SELECT date FROM tab ORDER BY date"