在数据库test_db中使用游标查询表Teacher中的数据。
时间: 2024-03-17 18:42:17 浏览: 122
好的,下面是使用Python的MySQL Connector库连接数据库,并使用游标查询test_db中Teacher表数据的示例代码:
```python
import mysql.connector
# 连接 MySQL 数据库
mydb = mysql.connector.connect(
host="localhost",
user="yourusername",
password="yourpassword",
database="test_db"
)
# 创建游标对象
mycursor = mydb.cursor()
# 执行查询语句
mycursor.execute("SELECT * FROM Teacher")
# 获取查询结果
result = mycursor.fetchall()
# 输出结果
for row in result:
print(row)
```
需要注意的是,上述代码中需要替换的部分是`host`、`user`和`password`,分别对应你的MySQL数据库的主机名、用户名和密码。同时,`database`需要替换成你要查询的数据库的名称。
阅读全文