Psycopg2-在postgres中将列表字典插入表中时如何包含'Null'值?

时间:2018-09-21 03:31:46

标签: python postgresql null psycopg2 insert-into

我正在解析我的xml文件,并将它们存储到列表字典中,在这里我将使用psycopg2将它们插入posgres的表中。但是,并不是所有的行都插入到表中(它仅插入到列表中数量最少的值中)。这是列表字典的片段:

dict_songs = {'title' : ['Need You Now', 'GTFO'...], 'format': ['MP4', 'MP3'...], 'type' : ['Country Pop', 'R&B Pop'..], 'year': [2010,2018..]}

dict_movie = {'title' : ['Searching', 'Sidewalk of New York'...], 'format': ['DVD', 'Blue Ray'...], 'type' : ['Thriller', 'Romcom'..], 'year': [2018..]

当我计算字典中每个列表的长度时,会发现并非所有列表都具有相同的长度,例如:

for key, value in dict_songs.items():
    #print value
    print(key, len([item for item in value if item]))

# The result is:
title 300000
format 189700
type 227294
year 227094

标题将是歌曲表中的主键。当我将此字典插入postgres时,它仅显示189700条记录,而不显示300000条记录。我希望它是300000条,并将Null表示为null(无)值。 dict_movie也是如此

这是我用来将字典列表插入表中的代码:

keys = ['title', 'format', 'type','year']
insert_statement = 'insert into song_table (%s) values %s'
for t in zip(*(dict_songs[key] for key in keys)):
   cur.execute(insert_statement3, (AsIs(','.join(keys)),t))
myConnection.commit()

任何想法为何或如何解决?谢谢!

1 个答案:

答案 0 :(得分:0)

我认为这里的问题是您不知道None / NULL值在哪里。 想象这些到列表:

dict_songs = {
  'title' : ['Need You Now', 'GTFO', 'Titletest']
  'type' : ['Country Pop', 'R&B Pop']
}

您的表可能在三个位置具有NULL值,并且列表中没有数据可以提示正确的位置:

+ -------------+-------------+-------------+-------------+
| title        | type        | type        | type        |
+--------------+-------------+-------------+-------------+
| Need You Now | Country Pop | Country Pop | NULL        |
| GTFO         | R&B Pop     | NULL        | Country Pop |
| Jinglebells  | NULL        | R&B Pop     | R&B Pop     |
+--------------+-------------+-------------+-------------+

您的列表需要具有 None 值,因此您知道将 NULL 放入数据库表的位置。像这样:

dict_songs = {
  'title' : ['Need You Now', 'GTFO', 'Titletest']
  'type' : ['Country Pop', None, 'R&B Pop']
}