gpt4 book ai didi

php - 使用 python 和 mysqldb 选择一行中的列并保存为变量

转载 作者:行者123 更新时间:2023-11-29 11:24:36 24 4
gpt4 key购买 nike

首先抱歉我的英语不好。我是 php 程序员,我刚刚开始学习 python 编程语言。

Mysql代码:

SELECT * FROM `datapy` ORDER BY `No` DESC LIMIT 0,1

并显示行:

++++++++++++++++++
++ NO +++ nilai ++
++++++++++++++++++
++ 12 +++ 100 ++
++++++++++++++++++

在 php 中,选择列并保存为变量非常容易:

$row = $takecolumn['nilai'];

如果在python中使用mysqldb我该怎么办?

最佳答案

您可以创建一个数据库对象,例如db并使用cursor()

cur=db.cursor()
cur.execute("select nilai from datapy ORDER BY `No` DESC LIMIT 0,1")
rows = cur.fetchall()

关于php - 使用 python 和 mysqldb 选择一行中的列并保存为变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38449634/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com