Mysql Erase Data

Source: Internet
Author: User

1. Delete and Truncate differences:

The TRUNCATE TABLE command quickly deletes all records in the datasheet, but retains the data table structure.

This quick delete is not the same as deleting all the data table records in the delete from data table, the deleted data is stored in the system rollback segment, the data can be rolled back for recovery when needed, and the data deleted by the TRUNCATE command is not recoverable.

2, if there are foreign key constraints between the tables, emptying the data table needs to first ignore the foreign key, delete the data, and then restore the foreign key;

The SQL commands executed are:

1 SET foreign_key_checks=0;
2 truncate TABLE tablename;
3 SET foreign_key_checks=1;

Mysql Erase Data

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.