写一个mysql数据库的api接口查询数据
时间: 2024-05-03 09:20:44 浏览: 209
好的,以下是一个使用Python和MySQLdb模块开发的查询MySQL数据库的API接口示例:
```
import MySQLdb
def query_db(query):
conn = MySQLdb.connect(host='localhost', user='root', passwd='password')
cursor = conn.cursor()
cursor.execute(query)
results = cursor.fetchall()
cursor.close()
conn.close()
return results
```
你可以将查询语句作为参数传递给 `query_db` 函数,例如:
```
results = query_db("SELECT * FROM students WHERE grade = 'A';")
for result in results:
print(result)
```
这会打印出所有成绩为A的学生的信息。当然,你需要将这个示例根据你的具体需求进行适当修改。
阅读全文