I am dealing with a very big database ~ 6 Million records. I’ve added ~30,000 bad records today. How can I delete all of the records created today in MySQL?
Share
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.
It seems
created_atis a datetime. Try:Of course, run a
select *prior to run this query and make sure the data you’re going to delete is the one you really want to delete.