I've a table that has a datetime
column such like that :
---------------------
| date_time_column |
---------------------
| 2020-09-14 14:00:13 |
| 2020-05-18 14:00:13 |
| 2021-12-14 14:00:13 |
---------------------
when I made these query
select * from `table`
where TIMESTAMP('date_time_column') < '2020-12-14 10:20:04'
but the result is nothing