I want to delete all entries from specific dates, but in my date field I also have the time.
Is there something like a wildcard that I could use ? like:
DELETE FROM table WHERE time='01.01.2010 WILDCARD';
the time would be where i wrote WILDCARD
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use
DATE()function.DELETE FROM table WHERE DATE(time) = '2010-01-01'