Python MySQL Drop Table (original) (raw)
Last Updated : 25 Apr, 2025
A connector is employed when we have to use MySQL with other programming languages. The work of MySQL-connector is to provide access to MySQL Driver to the required language. Thus, it generates a connection between the programming language and the MySQL Server.
Drop Table Command
Drop command affects the structure of the table and not data. It is used to delete an already existing table. For cases where you are not sure if the table to be dropped exists or not DROP TABLE IF EXISTS command is used. Both cases will be dealt with in the following examples. Syntax:
DROP TABLE tablename;
DROP TABLE IF EXISTS tablename;
The following programs will help you understand this better. Tables before drop: Example 1: Program to demonstrate drop if exists. We will try to drop a table which does not exist in the above database.
Python3
import
mysql.connector
mydb
=
mysql.connector.connect(
`` host
=
'localhost'
,
`` database
=
'College'
,
`` user
=
'root'
,
)
cs
=
mydb.cursor()
statement
=
"Drop Table
if
exists Employee"
cs.execute(statement)
cs.commit()
mydb.close()
Output: Example 2: Program to drop table Geeks
Python3
import
mysql.connector
mydb
=
mysql.connector.connect(
`` host
=
'localhost'
,
`` database
=
'College'
,
`` user
=
'root'
,
)
cs
=
mydb.cursor()
statement
=
"DROP TABLE Geeks"
cs.execute(statement)
cs.commit()
mydb.close()
Output: