RIP
Tutorial
Tags
Topics
Examples
eBooks
Download MySQL (PDF)
MySQL
Getting started with MySQL
Awesome Book
Awesome Community
Awesome Course
Awesome Tutorial
Awesome YouTube
ALTER TABLE
Arithmetic
Backticks
Backup using mysqldump
Change Password
Character Sets and Collations
Clustering
Comment Mysql
Configuration and tuning
Connecting with UTF-8 Using Various Programming language.
Converting from MyISAM to InnoDB
Create New User
Creating databases
Customize PS1
Data Types
Date and Time Operations
Dealing with sparse or missing data
DELETE
Drop Table
Drop Table
Drop tables from database
Dynamic Un-Pivot Table using Prepared Statement
ENUM
Error 1055: ONLY_FULL_GROUP_BY: something is not in GROUP BY clause ...
Error codes
Events
Extract values from JSON type
Full-Text search
Group By
Handling Time Zones
Indexes and Keys
INSERT
Install Mysql container with Docker-Compose
Joins
JOINS: Join 3 table with the same name of id.
JSON
Limit and Offset
LOAD DATA INFILE
Log files
Many-to-many Mapping table
MyISAM Engine
MySQL Admin
MySQL client
MySQL LOCK TABLE
Mysql Performance Tips
MySQL Unions
mysqlimport
NULL
One to Many
ORDER BY
Partitioning
Performance Tuning
Pivot queries
PREPARE Statements
Recover and reset the default root password for MySQL 5.7+
Recover from lost root password
Regular Expressions
Replication
Reserved Words
Security via GRANTs
SELECT
Server Information
SSL Connection Setup
Stored routines (procedures and functions)
String operations
Table Creation
Temporary Tables
Time with subsecond precision
Transaction
TRIGGERS
UNION
UPDATE
Using Variables
VIEW
MySQL
Getting started with MySQL
Awesome Book
Awesome Community
Awesome Course
Awesome Tutorial
Awesome YouTube
ALTER TABLE
Arithmetic
Backticks
Backup using mysqldump
Change Password
Character Sets and Collations
Clustering
Comment Mysql
Configuration and tuning
Connecting with UTF-8 Using Various Programming language.
Converting from MyISAM to InnoDB
Create New User
Creating databases
Customize PS1
Data Types
Date and Time Operations
Dealing with sparse or missing data
DELETE
Drop Table
Drop Table
Drop tables from database
Dynamic Un-Pivot Table using Prepared Statement
ENUM
Error 1055: ONLY_FULL_GROUP_BY: something is not in GROUP BY clause ...
Error codes
Events
Extract values from JSON type
Full-Text search
Group By
Handling Time Zones
Indexes and Keys
INSERT
Install Mysql container with Docker-Compose
Joins
JOINS: Join 3 table with the same name of id.
JSON
Limit and Offset
LOAD DATA INFILE
Log files
Many-to-many Mapping table
MyISAM Engine
MySQL Admin
MySQL client
MySQL LOCK TABLE
Mysql Performance Tips
MySQL Unions
mysqlimport
NULL
One to Many
ORDER BY
Partitioning
Performance Tuning
Pivot queries
PREPARE Statements
Recover and reset the default root password for MySQL 5.7+
Recover from lost root password
Regular Expressions
Replication
Reserved Words
Security via GRANTs
SELECT
Server Information
SSL Connection Setup
Stored routines (procedures and functions)
String operations
Table Creation
Temporary Tables
Time with subsecond precision
Transaction
TRIGGERS
UNION
UPDATE
Using Variables
VIEW
MySQL
Drop Table
Fastest Entity Framework Extensions
Bulk Insert
Bulk Delete
Bulk Update
Bulk Merge
Syntax
DROP TABLE table_name;
DROP TABLE IF EXISTS table_name; -- to avoid pesky error in automated script
DROP TABLE t1, t2, t3; -- DROP multiple tables
DROP TEMPORARY TABLE t; -- DROP a table from CREATE TEMPORARY TABLE ...
Parameters
Parameters
Details
TEMPORARY
Optional. It specifies that only temporary tables should be dropped by the DROP TABLE statement.
IF EXISTS
Optional. If specified, the DROP TABLE statement will not raise an error if one of the tables does not exist.
Drop Table Related Examples
Drop Table
Drop tables from database
Got any MySQL Question?
Ask any MySQL Questions and Get Instant Answers from ChatGPT AI:
ChatGPT answer me!
PDF
- Download
MySQL
for free
Previous
Next
Cookie
This website stores cookies on your computer.
We use cookies to enhance your experience on our website and deliver personalized content.
For more details on our cookie usage, please review our
Cookie Policy
and
Privacy Policy
Accept all Cookies
Leave this website