MYSQL数据库构建代码
时间: 2024-09-26 15:17:16 浏览: 53
MySQL数据库通常通过编写SQL(Structured Query Language)命令或使用编程语言如Python、PHP等连接MySQL来创建。下面是一个简单的例子,展示如何在Python中使用`pymysql`库创建一个新的MySQL数据库:
```python
import pymysql
# 连接到MySQL服务器
db = pymysql.connect(host='localhost', user='your_username', password='your_password')
try:
# 创建游标对象
cursor = db.cursor()
# 定义创建数据库的SQL语句
sql_create_database = "CREATE DATABASE your_database_name;"
# 执行SQL
cursor.execute(sql_create_database)
print(f"Database '{your_database_name}' created successfully.")
except pymysql.Error as e:
print(f"Error creating database: {e}")
finally:
# 关闭连接
db.close()
```
在这个示例中,你需要替换`your_username`, `your_password`和`your_database_name`为你实际的MySQL用户名、密码和你想要创建的数据库名称。
阅读全文