本文介绍了Sqlserver 2008返回错误的日期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好,
我在sqlserver 2008中使用下面的GetDate()更新语法:
更新tblSurvey
设置CloseDate = GetDate(),
其中SurveyId = @ SurveyGroupId。
而不是今天的日期,它在tblsurvey中将日期更新为2013-06-23 12:25:00.803。
下次,我执行了相同的查询。它有为我显示了正确的日期。
有什么想法为什么日期不正确?
问候,
priya。
Hi All,
I am using the GetDate() in the following below update Syntax in the sqlserver 2008:
Update tblSurvey
Set CloseDate=GetDate(),
Where SurveyId=@SurveyGroupId .
Instead of today's date,It has updated the date as "2013-06-23 12:25:00.803" in the tblsurvey.
Next time,I have executed the same query.It has shown the correct date for me.
Any thoughts Why it has shown incorrect date ?
Regards,
priya.
推荐答案
这篇关于Sqlserver 2008返回错误的日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!