在 SQL 列名查询中使用 Python 列表

Use Python list in SQL query for column names

我在 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))

您不能将列列表作为参数传递给 select 给 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