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?
Expand Databases, right-click the database to delete, and then click Delete. Confirm the correct database is selected, and then click OK.
The DELETE statement is used to delete existing records in a table.
Another way to delete multiple rows is to use the IN operator. DELETE FROM table_name WHERE column_name IN (value 1, value 2, value 3, etc...); If you want to delete all records from the table then you can use this syntax.
To delete an entire record/row from a table, enter delete from followed by the table name, followed by the where clause which contains the conditions to delete. If you leave off the where clause, all records will be deleted.
It seems created_at
is a datetime. Try:
delete from table
where date(created_at) = curdate()
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.
The condition
WHERE created_at >= '2012-03-25'
AND created_at < '2012-03-26'
could be used to identify the rows (and quite efficiently if there is an index on created_at
).
Before deleting, make sure you backup the table (or even better, the whole database). Additionally, you can use some (temp or permament) table to have the rows stored, before deleting them from your table. Then, you delete this temp table when you are sure you have erased the offending data - and nothing else:
CREATE TABLE wrong_data AS
SELECT *
FROM tableX
WHERE created_at >= '2012-03-25'
AND created_at < '2012-03-26' ;
DELETE t
FROM tableX AS t
JOIN wrong_data AS w
ON w.PK = t.PK ;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With