gpt4 book ai didi

postgresql - 如何在 postgresql 中为更新添加默认值?

转载 作者:行者123 更新时间:2023-11-29 13:11:33 24 4
gpt4 key购买 nike

我有一个 bool 值列,我在其中添加了默认值 false。据我了解,当我向表中添加新行时,默认值将生效。但是,我也希望在更新行时使用默认值 false。这可能吗?

例如:

ALTER TABLE mytable ALTER COLUMN mycolumn SET DEFAULT false;

-- In below query the mycolumn should default to false
update mytable set somecolumn = 'somevalue'
where somecolumn = 'anothervalue'

-- In below query mycolumn should be true since the value is specified
update mytable set somecolumn = 'somevalue' mycolumn = true
where somecolumn = 'anothervalue'

最佳答案

您可以按如下方式创建触发器:

CREATE FUNCTION mytriggerfunction()
RETURNS TRIGGER AS '
BEGIN
IF NEW.mycolumn IS NULL OR NEW.mycolumn='''' THEN
NEW.mycolumn := ''somedefaultvalue'';
END IF;
RETURN NEW;
END' LANGUAGE 'plpgsql';

CREATE TRIGGER mytrigger
BEFORE UPDATE ON mytable
FOR EACH ROW
EXECUTE PROCEDURE mytriggerfunction();

关于postgresql - 如何在 postgresql 中为更新添加默认值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54024518/

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