kevinkhan
03-30-2010, 01:21 PM
I have a database with a table called phone_number_sent and a column with a title of date_sent..
How do i delete all records with a date of 2010-03-30??
the date_sent column is formatted like the following numbers..
2010-03-30 11:16:30
2010-03-30 11:16:43
i tryed
DELETE FROM `phone_number_sent` WHERE `date_sent` LIKE `2010-03-30`
but didnt work :(
can anybody tell me what i can write?
How do i delete all records with a date of 2010-03-30??
the date_sent column is formatted like the following numbers..
2010-03-30 11:16:30
2010-03-30 11:16:43
i tryed
DELETE FROM `phone_number_sent` WHERE `date_sent` LIKE `2010-03-30`
but didnt work :(
can anybody tell me what i can write?