嗨我是一名需要sql server 2008帮助的学生,试图将当前时间添加到表中
我已经研究过,只能找到如何显示当前时间
create table howto
(
TimeDifference varchar(20) not null,
StartTime DateTime,
EndTime DateTime -- this is the current time
)
go
declare @Etime datetime
select GETDATE()
set @Etime = getdate()
go
答案 0 :(得分:2)
您可以将相应列的“默认值或绑定”属性设置为getdate()
alter table howto add constraint EndTimeConstraint default getdate() for EndTime;
如果您不打算再修改行,则可以使用类型为timestamp
的列。