I want to run below command in my SQL database to delete links of a particular user between a particular date range:
DELETE FROM `links`
WHERE `user_id` = 83238 AND
`created` BETWEEN `2018-12-07 00:00:00` AND `2018-12-08 23:59:59`;
But it doesn't works.