小编Vei*_*ity的帖子

在 MySQL 查询中使用 Python 变量

我正在尝试编写一个函数,该函数采用placeholder()下面编写的函数中编写的变量,然后在MySQL查询中使用该变量。我在下面写了一个例子:

import MySQLdb
connection = MySQLdb.connect(host = "localhost", user = "root", 
                   passwd = "", db = "cars")
cursor = connection.cursor()

def placeholder(placeholder_variable):
    sql = "TRUNCATE TABLE %s"
    cursor.execute(sql, placeholder_variable)

placeholder('car_brands')
Run Code Online (Sandbox Code Playgroud)

当我尝试运行该程序时,出现以下错误:

ProgrammingError: (1064, "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''car_brands'' at line 1")

这是大学作业,必须使用该placeholder('variable')格式来接收变量。我花了几个小时在互联网上搜索试图找到解决方案,请帮助:/

python mysql mysql-python

3
推荐指数
1
解决办法
1万
查看次数

标签 统计

mysql ×1

mysql-python ×1

python ×1