gpt4 book ai didi

postgresql - 将PostgreSQL中所有表的所有记录中的所有空字符串设置为NULL

转载 作者:行者123 更新时间:2023-11-29 12:15:00 25 4
gpt4 key购买 nike

我想用空字符串更新 PostgreSQL 中所有表的所有列中的所有记录。有没有办法通过查询来做到这一点?或者至少如何查询没有 NOT NULL 约束的所有列。

最佳答案

像这样访问 information_schema

select * 
from information_schema.columns
where is_nullable = 'YES';

根据该数据,您可以为所有表和列生成自己的更新语句。

关于postgresql - 将PostgreSQL中所有表的所有记录中的所有空字符串设置为NULL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1688937/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com