|
Home >> FAQs/Tutorials >> MySQL Tutorials
MySQL Tutorial - Deleting All Rows in a Table
By: FYIcenter.com
(Continued from previous topic...)
How To Delete All Rows in a Table?
If you want to delete all rows from a table, you have two options:
- Use the DELETE statement with no WHERE clause.
- Use the TRUNCATE TABLE statement.
The TRUNCATE statement is more efficient the DELETE statement.
The tutorial exercise shows you a good example of TRUNCATE statement:
mysql> SELECT COUNT(*) FROM fyi_links;
+----------+
| COUNT(*) |
+----------+
| 5 |
+----------+
1 row in set (0.08 sec)
mysql> TRUNCATE TABLE fyi_links;
Query OK, 0 rows affected (0.02 sec)
mysql> SELECT COUNT(*) FROM fyi_links;
+----------+
| COUNT(*) |
+----------+
| 0 |
+----------+
1 row in set (0.00 sec)
- What Are DML Statements?
- How To Create a Testing Table?
- How To Insert a New Row into a Table?
- How To Specify Default Values in INSERT Statement?
- How To Omit Columns with Default Values in INSERT Statement?
- What Happens If Unique Value Constraints Are Violated?
- How To Insert Multiple Rows with One INSERT Statement?
- How To Update Values in a Table?
- How To Update Column Values on Multiple Rows?
- How To Use Existing Column Values in the SET Clause?
- Is the Order of Columns in the SET Clause Important?
- How To Use Values from Other Tables in UPDATE Statements?
- What Happens If the UPDATE Subquery Returns No Rows?
- What Happens If the UPDATE Subquery Returns Multiple Rows?
- How To Delete an Existing Row from a Table?
- How To Delete Multiple Rows from a Table?
- How To Delete All Rows in a Table?
|