Python中怎么判断字段不存在? 通过这俩个方法你就会了
陈立鑫
优草派
很多小伙伴在学习python和postgresql的过程中,想看看python与postgresql的关系到底如何,想在Python中如何来判断字段不存在。通过下面俩种方法你就知道了。
方法一:
select * from information_schema.columns WHERE table_schema = 'table_schema' and table_name = 'table_name' and column_name = 'column_name';
方法二:
select count(*) from information_schema.columns WHERE table_schema = 'table_schema' and table_name = 'table_name' and column_name = 'column_name';
postgresql补充:
判断表是否存在:
select count (*) from information_schema.tables WHERE table_schema = 'table_schema' and table_name = 'table_name'; select * from information_schema.tables WHERE table_schema = 'table_schema' and table_name = 'table_name';
以上就是小编给大家带来的如何在python中判断字段是否存不存在的知识点了。
【原创声明】凡注明“来源:优草派”的文章,系本站原创,任何单位或个人未经本站书面授权不得转载、链接、转贴或以其他方式复制发表。否则,本站将依法追究其法律责任。