Psycopg2 - How to include amp;#39;Nullamp;#39; values in inserting dictionary of list to table in postgres?(在将列表的字典插入到Postgres的表中时,如何包含amp;#39;Nullamp;;值?)
本文介绍了在将列表的字典插入到Postgres的表中时,如何包含&;#39;Null&;;值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在解析我的XML文件,并将它们存储到一个列表字典中,在那里我将使用心理拷贝g2将它们插入到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_MOVICE也是如此
这是我用来将词典列表插入到表中的代码:
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()
你知道为什么要这么做,或者怎么做吗?谢谢!
推荐答案
我认为这里的问题在于您不知道None/NULL值在哪里。 把这些想象成清单:
dict_songs = {
'title' : ['Need You Now', 'GTFO', 'Titletest']
'type' : ['Country Pop', 'R&B Pop']
}
您的表的三个位置可能有空值,并且列表中没有可能提示正确的值的数据:
+ -------------+-------------+-------------+-------------+
| 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']
}
这篇关于在将列表的字典插入到Postgres的表中时,如何包含&;#39;Null&;;值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:在将列表的字典插入到Postgres的表中时,如何包含&;#39;Null&;;值?
基础教程推荐
猜你喜欢
- 将 YAML 文件转换为 python dict 2022-01-01
- 合并具有多索引的两个数据帧 2022-01-01
- Python 的 List 是如何实现的? 2022-01-01
- 使用 Google App Engine (Python) 将文件上传到 Google Cloud Storage 2022-01-01
- 哪些 Python 包提供独立的事件系统? 2022-01-01
- 使用Python匹配Stata加权xtil命令的确定方法? 2022-01-01
- 如何在 Python 中检测文件是否为二进制(非文本)文 2022-01-01
- 使 Python 脚本在 Windows 上运行而不指定“.py";延期 2022-01-01
- 如何在Python中绘制多元函数? 2022-01-01
- 症状类型错误:无法确定关系的真值 2022-01-01