我在Python列表中有一堆列名。现在我需要将该列表用作SELECT
语句中的列名。我怎么能这样做?
pythonlist = ['one', 'two', 'three']
SELECT pythonlist FROM data;
到目前为止,我有:
sql = '''SELECT %s FROM data WHERE name = %s INTO OUTFILE filename'''
cur.execute(sql,(pythonlist,name))
答案 0 :(得分:2)
您无法传递列列表以选择cur.execute
作为参数。它应该是SQL表达式的一部分,例如:
sql = "SELECT " + ",".join(pythonlist) + " FROM data WHERE name = %s INTO OUTFILE filename"
cur.execute(sql, (name,))
需要注意的一点是,SQL中参数值的占位符取决于数据库。如果%s
不起作用,请尝试使用?
或:1
。有关详细信息,请参阅https://www.python.org/dev/peps/pep-0249/#paramstyle。