我正在使用pyodbc从SQL数据库返回行,我可以连接并获取所有行。但现在我很困惑如何处理返回的数据。我想将返回列表中的所有值加入到一个字符串中,然后我可以将其写入文件。但我不确定如何处理列表中的多种数据类型。
以下是通往列表的基本代码:
key = "03001001"
cursor.execute('''select * from table_name where key='{}' '''.format(key))
rows = cursor.fetchall()
for x in rows:
print(x)
当我print(x)
时,它返回以下行:
('03001001', 2, datetime.datetime(2014, 11, 13, 4, 30), 0, Decimal('-0.1221'), 5, 0, 0, 0, datetime.datetime(2014, 11, 13, 14, 30), datetime.datetime(2014, 11, 13, 4, 30, 12), 0)
我希望它只是一个制表符分隔的字符串。
答案 0 :(得分:0)
print('\t'.join(map(repr, x)))
将导致
'03001001' 2 datetime.datetime(2014, 11, 13, 4, 30) 0 Decimal('-0.1221')5 0 0 0 datetime.datetime(2014, 11, 13, 14, 30) datetime.datetime(2014, 11, 13, 4, 30, 12) 0
如果您想要人类可读的日期和小数点,请使用str
代替repr
(如Matti John的答案):
print('\t'.join(map(str, x)))
将打印
03001001 2 2014-11-13 04:30:00 0 -0.1221 5 0 0 02014-11-13 14:30:00 2014-11-13 04:30:12 0