Python 和 MySQL - 删除数据库示例


Python 使用 c.execute(q) 函数创建或删除 MySQL 数据库,其中 c 是游标,q 是要执行的查询。

语法

# 使用 execute() 方法执行 SQL 查询。
cursor.execute(sql)

Sr.No. 参数及说明
1

$sql

必需 - 用于删除 MySQL 数据库的 SQL 查询。

示例

尝试以下示例删除数据库 −

将以下示例复制并粘贴为 mysql_example.ty −

#!/usr/bin/python

import MySQLdb

#打开数据库连接
db = MySQLdb.connect("localhost","root","root@123")

# 使用 cursor() 方法准备游标对象
cursor = db.cursor()

# 使用 execute() 方法执行 SQL 查询。
cursor.execute("DROP DATABASE TUTORIALS")

print('Database removed');

# 断开与服务器的连接
db.close()

输出

使用 python 执行 mysql_example.py 脚本并验证输出。

Database dropped