gpt4 book ai didi

sqlite - 设置列的默认值 : the value of another column

转载 作者:行者123 更新时间:2023-12-03 17:31:11 25 4
gpt4 key购买 nike

假设我有一个表,其中有 2 个相同类型且具有相同约束的列 - 它们是 2 个外键。

现在我需要将 column2 的默认值设置为等于 column1 的当前值。在创建表并且不使用触发器进行插入/更新时,这是否可能 - 我的意思是不手动执行?

最佳答案

列的默认值必须是常量:

> CREATE TABLE t(x, y DEFAULT (x));
Error: default value of column [y] is not constant

这样的默认值需要触发器:
CREATE TRIGGER default_y_from_x
AFTER INSERT ON t
FOR EACH ROW
WHEN NEW.y IS NULL
BEGIN
UPDATE t SET y = NEW.x WHERE rowid = NEW.rowid;
END;

关于sqlite - 设置列的默认值 : the value of another column,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26417256/

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