我有一个JSON数组,其中包含数据库中列的名称。
array = ['id', 'name']
我需要用cursor. execute查询来选择这些列,然后创建一个字典:
{firstColumn:firstValue} {secondColumn:secondValue}
for column in array:
cursor.execute("select " + column + " from Database")
我不知道怎样编这样的字典:
[ {“id”:“1”,“name”:“John”},{“id”:“2”,“name”:“Peter”},etc ...]
1条答案
按热度按时间tktrz96b1#
我已经在pyodbc中完成了。我猜这就是你想要的:
在我的例子中,结果是: