SQlite:创建新列

时间:2018-10-26 06:03:54

标签: sqlite

我有一张这样的桌子。我正在尝试自动填充(如果为空为空)。

Name       Registered   Expiry
A          2017-08-13   null
B          2014-04-21   2014-09-15
C          2018-06-15   2019-8-15   

我该怎么办?

INSERT INTO TABLE(Expiry) Values( Registered+30 days) Where Expiry IS NULL

1 个答案:

答案 0 :(得分:0)

您需要update而不是insert新记录

update your_table
set expiry = date(Registered , '30 days')
where expiry is null