2016-05-13 64 views
0

我需要一些幫助寫入到python postgres sql表。python sql模塊插入

第一列IDint,第二列天是float。我如何正確格式化它?這不起作用。

當我做values('%d');'''%id)它的工作原理,但我無法弄清楚如何在同一行插入intfloat

cur.execute('''insert into test (id, long) values('%d %d');''' % (id, long)) 

回答

0

使用%s,讓Psycopg做類型適應:

cur.execute('''insert into test (id, long) values (%s, %s);''', (id, long))