delete table data mysql code example
Example 1: mysql delete row
DELETE FROM products WHERE product_id=1;
Example 2: drop table in mysql
DROP TABLE table_name;
Example 3: delete all content in table mysql
TRUNCATE tablename
Example 4: mysql remove records
DELETE FROM table_name
WHERE condition;
Example 5: how to delete all the rows in a table without deleting the table in mysql
delete from tableName;
Example 6: MySQL DROP TABLE
To remove existing tables, you use the MySQL DROP TABLE statement.
Here is the basic syntax of the DROP TABLE statement:
DROP [TEMPORARY] TABLE [IF EXISTS] table_name [, table_name] ...
[RESTRICT | CASCADE]
The DROP TABLE statement removes a table and its data permanently from the database. In MySQL, you can also remove multiple tables using a single DROP TABLE statement, each table is separated by a comma (,).
The TEMPORARY option allows you to remove temporary tables only. It ensures that you do not accidentally remove non-temporary tables.
The IF EXISTS option conditionally drop a table only if it exists. If you drop a non-existing table with the IF EXISTS option, MySQL generates a NOTE, which can be retrieved using the SHOW WARNINGS statement.
Note that the DROP TABLE statement only drops tables. It doesn
The RESTRICT and CASCADE options are reserved for the future versions of MySQL.