I need help with this SQL query. This is my table:
| id_list | name | date_created | date_updated |
|-----------|-----------|-----------------------|---------------------|
| 1 | Laundry | 2020-10-14 12:29:14 | 2020-10-15 08:04:10 |
| 2 | Food | 2020-10-14 12:38:43 | 2020-10-15 10:45:03 |
How can I select the row with the nearest date_updated? The output has to be like this:
| id_list | name | date_created | date_updated |
|-----------|-----------|-----------------------|---------------------|
| 2 | Food | 2020-10-14 12:38:43 | 2020-10-15 10:45:03 |
If you just want the "nearest" to the current time just use the max. This will return multiple rows in case of a tie.