python查询mysql block_trade_institution表格中ts_code列和trade_date列,
时间: 2023-12-16 15:06:45 浏览: 76
可以使用以下代码查询 MySQL 数据库中的 `block_trade_institution` 表格中的 `ts_code` 列和 `trade_date` 列:
```python
import pymysql
# 连接 MySQL 数据库
connection = pymysql.connect(host='localhost',
user='root',
password='password',
db='database_name',
charset='utf8mb4',
cursorclass=pymysql.cursors.DictCursor)
try:
with connection.cursor() as cursor:
# SQL查询语句
sql = "SELECT ts_code, trade_date FROM block_trade_institution"
# 执行查询
cursor.execute(sql)
# 获取查询结果
result = cursor.fetchall()
# 输出查询结果
for row in result:
print(row)
finally:
# 关闭数据库连接
connection.close()
```
这个代码片段假设你已经安装了 PyMySQL 库,并且已经正确配置了 MySQL 数据库连接信息。如果你的环境不同,你需要根据实际情况进行修改。
在这个代码片段中,我们使用了 `SELECT` 语句来选择 `ts_code` 列和 `trade_date` 列,并且使用了 `fetchall()` 方法来获取所有查询结果。最后,我们使用一个循环来输出每一行的数据。
阅读全文