您可以将它们全部分组在同一个alter语句中:
原文链接:https://www.f2er.com/postgresql/193085.htmlalter table tbl alter col1 drop not null,alter col2 drop not null,…
您还可以从目录中检索相关列的列表,如果您希望编写一个do block来生成所需的sql。例如,像:
select a.attname from pg_catalog.pg_attribute a where attrelid = 'tbl'::regclass and a.attnum > 0 and not a.attisdropped and a.attnotnull;
(请注意,这也包括与主键相关的字段,因此您需要将这些字段过滤掉。)
如果你这样做,不要忘了在你需要处理列名中潜在的怪异字符的情况下使用quote_ident()。