python把excel新建表 数据导入mysql
时间: 2023-08-15 12:10:22 浏览: 129
python脚本,根据excel数据自动创建mysql库、表-并更新数据
5星 · 资源好评率100%
要使用 Python 将 Excel 数据导入到 MySQL 数据库的新表中,可以按照以下步骤进行操作:
首先,确保你已经安装了 pandas 和 MySQL 客户端库(如 mysql-connector-python),可以使用以下命令进行安装:
```
pip install pandas
pip install mysql-connector-python
```
接下来,导入所需的库:
```python
import pandas as pd
import mysql.connector
```
然后,创建与 MySQL 数据库的连接:
```python
cnx = mysql.connector.connect(user='your_username', password='your_password',
host='your_host', database='your_database')
```
请确保将 `'your_username'`、`'your_password'`、`'your_host'` 和 `'your_database'` 替换为你的实际数据库连接信息。
接下来,使用 `pd.read_excel()` 函数从 Excel 文件中读取数据并创建 pandas DataFrame。例如,假设你要读取名为 `'file_name.xlsx'` 的 Excel 文件中的所有数据:
```python
df = pd.read_excel('file_name.xlsx')
```
你可以替换 `'file_name.xlsx'` 为你要读取的实际文件名。
然后,使用 `df.to_sql()` 方法将 DataFrame 中的数据导入到 MySQL 数据库的新表中。例如,假设你要创建名为 `'new_table'` 的新表并将数据导入其中:
```python
df.to_sql('new_table', con=cnx, if_exists='replace', index=False)
```
你可以替换 `'new_table'` 为你要创建的实际表名。`if_exists='replace'` 表示如果表已经存在,则替换原有表。`index=False` 表示不导入 DataFrame 的索引列。
最后,记得关闭数据库连接:
```python
cnx.close()
```
现在,你的 Excel 文件中的数据已经成功导入到 MySQL 数据库的新表中了。
阅读全文