How to write the PHP delete statement: 1. Use the delete statement to delete, the code is [delete from friends where user_name = ""]; 2. Use the truncate statement to delete, the code is [TRUNCATE [TABLE] tbl_name].
How to write the PHP delete statement:
MySQL provides us with delete and truncate statements to delete data.
1. Definition of delete statement:
Most of the delete statements are used when deleting data. Now let's look at the definition of delete statement.
DELETE [LOW_PRIORITY] [QUICK] [IGNORE] FROM tbl_name [WHERE where_definition] [ORDER BY ...] [LIMIT row_count]
delete from friends where user_name = 'simaopig';
delete Note:
From the syntax structure, we can see that, like the update syntax, we can omit the where clause. But this is a very dangerous behavior. Because if you do not specify the where clause, delete will delete all records in the table, and delete them immediately.
2. A brief explanation of the truncate statement:
This statement I have never come into contact with or used it before. Because generally, everyone uses the delete statement to delete data. In fact, this truncate command is very simple. It means: delete all records in the table. It is equivalent to the delete statement without a where clause. The syntax structure is:
TRUNCATE [TABLE] tbl_name
Here is a simple example. I want to delete all the records in the friends table. I can use the following statement:
truncate table friends;
The efficiency of truncate and delete Question:
If you want to delete all data in the table, the truncate statement is faster than the delete statement. Because truncate deletes the table and then re-creates it according to the table structure, while delete deletes the records and does not try to modify the table. This is why when inserting data into a table that has been cleared using delete, MySQL will remember the previously generated AUTOINCREMENT sequence and continue to use it to number the AUTOINCREMENT fields. After truncate deletes the table, the table numbers the autoincrement fields starting from 1.
However, the truncate command is fast and fast, but it is not as safe for transaction processing as the delete command. Therefore, if the table we want to truncate is currently undergoing transaction processing, this command will exit with an error message.
Related learning recommendations: PHP programming from entry to proficiency
The above is the detailed content of How to write delete statement in PHP?. For more information, please follow other related articles on the PHP Chinese website!