转换python字符串数组以获取SQL列名

时间:2018-12-14 19:24:00

标签: python sql arrays string quotes

如何转换columns = ['column1', 'column2', 'column3']之类的python数组 用于形成像这样的SQL语句

"Select column1, column2, column3 from table"吗?

我可以在数组上使用join,但是不知道如何去除字符串的引号。

1 个答案:

答案 0 :(得分:1)

>>> 'select ' + ', '.join([c for c in columns]) + ' from table'
'select column1, column2, column3 from table'

这就是您的想法吗?