gpt4 book ai didi

sql - 每次在 SQL Server 中更新或插入行时,我都想获取当前日期时间

转载 作者:行者123 更新时间:2023-12-04 05:07:30 25 4
gpt4 key购买 nike

我有一个表 s_phone 在这个表中有列 s_update

我想在每次更新或插入这个表时得到当前的日期时间

getdate()systime()CURRENT_TIMESTAMP 只在插入时获取日期时间,不在更新时获取

最佳答案

您可以使用 TRIGGER当表中发生插入/更新时,触发器将自动运行。

例如:

create table tbl1
(
col1 int primary key,
col2 datetime
)
go
create trigger trg01
on tbl1
for insert, update
as
begin
update tbl1
set col2 = GETDATE()
where col1 in (select col1 from inserted)
end
go
insert into tbl1(col1) values (1);

关于sql - 每次在 SQL Server 中更新或插入行时,我都想获取当前日期时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15332472/

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