Hi Everyone, I am having a bulk of data. While going through my database, I found some of data are now corrupted or inaccurate. How can I remove inaccurate data from my database? Looking forward for your suggestions. Thanks
Depends on what kind of data it is. You could try sql commands like: SELECT * FROM tablename WHERE name="idontknow"; Code (markup): Tablename = the name of the table name= column name idontknow = the value of which name should have. if you are sure that everything in there can be deleted: DELETE FROM tablename WHERE name="idontknow"; Code (markup): done.