将时间格式设置为“24 小时军用时间”?
我正在将一些 SQL Server 2000 代码更新到 SQL Server 2008R2,并且有一个看起来很像 的函数 用于将时间转换为 24 小时格式。在 T-SQL 中执行此操作的更酷/更聪明的方法是什么?
I am updating some SQL Server 2000 code to SQL Server 2008R2, and there is function that looks a lot like this for converting the time into 24 hour format. What is a cooler/more clever way to do that in T-SQL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果你想要的只是军事时间:
If all you want is just military time:
如果你想要直到秒的时间,那么使用这个:
如果你想要直到毫秒的时间,那么使用这个:
GETDATE()
用于当前日期,你可以在此处传递任何变量。If you want time till second, then use this:
IF you want time till millisecond, then use this:
GETDATE()
is used for current date you can pass any variable here.