将文本格式的日期转换为 T-SQL 中的日期时间格式
我有一个客户端提供的文件,该文件已加载到我们的 SQL Server 数据库中。该文件包含基于文本的日期值,即(05102010),我需要从数据库列读取它们并将它们转换为正常的日期时间值='2010-05-10 00:00:00.000'作为清理的一部分过程。
任何指导将不胜感激。
I have a client supplied file that is loaded in to our SQL Server database. This file contains text based date values i.e. (05102010) and I need to read them from a db column and convert them to a normal date time value = '2010-05-10 00:00:00.000' as part of a clean-up process.
Any guidance would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用
示例的一种方法
one way by using
example
尝试:
工作示例:
输出:
Try:
working example:
OUTPUT:
又快又脏:
Quick and dirty: