T-SQL 中的 DateTimeOffset.Now
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/1048412/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
DateTimeOffset.Now in T-SQL
提问by Robert
I'm executing a INSERT to a sql 2008 db. How do I specify in T-SQL to insert NOW in a DATETIMEOFFSET column? GETDATE()?
我正在对 sql 2008 db 执行 INSERT。如何在 T-SQL 中指定在 DATETIMEOFFSET 列中插入 NOW?获取日期()?
回答by gbn
Maybe.
也许。
This would give you the local time of the server where SQL is installed.
这将为您提供安装 SQL 的服务器的本地时间。
Do you want to store timezone etc too? If so, SYSDATETIMEOFFSET() may be better
你也想存储时区等吗?如果是这样,SYSDATETIMEOFFSET() 可能会更好
回答by batmaci
sysutcdatetime()is the better option if your clients are in the different part of the world and you want to use this column to filter or compare purpose.
如果您的客户位于世界的不同地区并且您想使用此列来过滤或比较目的,则sysutcdatetime()是更好的选择。