python 操作Mysql %s怎么用
cs1.execute('select id from score where id=%s',(flag,)) 这样是正常输出 1
上面这个怎么改成下面这个??
cs1.execute('select %s from score where id=%s',(p,flag)) 这样是输出 id
回答:
'select %s from score where id=%s' % (p,flag)
以上是 python 操作Mysql %s怎么用 的全部内容, 来源链接: utcz.com/a/157929.html