Do you have a way to enter mySQL queries?
If so, then you first want to determine the name of the table:
should give you a list of the tables in your database. If the records are in a single table then you can probably risk deleting them, but be careful as you can break things if you delete something that another table references. I would strongly advise backing up the mySQL database first. You can use something like:
Quote:
|
mysqldump -u<user> -p<passwd> <dbname> > <backupFileName>
|
Anyway, to answer your question, let's assume the table name is myTable. Use the following command:
Quote:
|
DELETE FROM myTable WHERE DateUpdated<yourDate;
|
To be safe, you can check your query syntax by using:
Quote:
|
SELECT * FROM myTable WHERE DateUpdated<yourDate;
|
you should see a list of the records that match your date query. If this is correct, then do the DELETE.