我想删除的时候调用存储过程,在存储过程里用sql语句获取当前时间记录到表中,不知道应该怎么去写CREATE PROCEDURE File_Move
    @msgid int,
    @userName varchar(200)  
 AS begin
update RecieveFile set Status = 1 , DuserName=@userName,Ddate=.....? where id = @msgid    end
GO
各位帮帮忙啊
谢谢了