PyMySQL 在 Python 中将变量分配给 table 名称
PyMySQL assigning a variable to table name, in Python
我在 Python 2.7 中使用 PyMySQL。我必须创建一个函数 - 其中,给定一个 table 名称,查询将找到所有列名称的唯一值。
由于涉及多个 table,我不想硬编码 table 名称。现在,一个更简单的查询是这样的:
cursor.execute(" SELECT DISTINCT(`Trend`) AS `Trend` FROM `Table_1` ORDER BY `Trend` DESC ")
我想做这样的事情:
tab = 'Table_1'
cursor.execute(" SELECT DISTINCT(`Trend`) AS `Trend` FROM tab ORDER BY `Trend` DESC ")
我收到以下错误:
ProgrammingError: (1146, u"Table 'Table_1.tab' doesn't exist")
有人可以帮忙吗。 TIA
确保您使用的 数据库 是正确的,并使用 %s
格式化您的 sql 语句。
DB_SCHEMA='test_db'
table_name='table1'
connection = pymysql.connect(host=DB_SERVER_IP,
port=3306,
db=DB_SCHEMA,
charset='UTF8',
cursorclass=pymysql.cursors.DictCursor
)
try:
with connection.cursor() as cursor:
sql = "SELECT DISTINCT(`Trend`) AS `Trend` FROM `%s` ORDER BY `Trend` DESC"%(table_name)
cursor.execute(sql)
connection.commit()
except Exception as e:
print e
finally:
connection.close()
希望对您有所帮助。
我在 Python 2.7 中使用 PyMySQL。我必须创建一个函数 - 其中,给定一个 table 名称,查询将找到所有列名称的唯一值。
由于涉及多个 table,我不想硬编码 table 名称。现在,一个更简单的查询是这样的:
cursor.execute(" SELECT DISTINCT(`Trend`) AS `Trend` FROM `Table_1` ORDER BY `Trend` DESC ")
我想做这样的事情:
tab = 'Table_1'
cursor.execute(" SELECT DISTINCT(`Trend`) AS `Trend` FROM tab ORDER BY `Trend` DESC ")
我收到以下错误:
ProgrammingError: (1146, u"Table 'Table_1.tab' doesn't exist")
有人可以帮忙吗。 TIA
确保您使用的 数据库 是正确的,并使用 %s
格式化您的 sql 语句。
DB_SCHEMA='test_db'
table_name='table1'
connection = pymysql.connect(host=DB_SERVER_IP,
port=3306,
db=DB_SCHEMA,
charset='UTF8',
cursorclass=pymysql.cursors.DictCursor
)
try:
with connection.cursor() as cursor:
sql = "SELECT DISTINCT(`Trend`) AS `Trend` FROM `%s` ORDER BY `Trend` DESC"%(table_name)
cursor.execute(sql)
connection.commit()
except Exception as e:
print e
finally:
connection.close()
希望对您有所帮助。