gpt4 book ai didi

SQL Server : convert string with format dddd mm/dd/yy to date

转载 作者:行者123 更新时间:2023-12-04 04:46:18 25 4
gpt4 key购买 nike

如何转换格式为 dddd mm/dd/yy 的字符串迄今为止在 SQL Server 中?

例如Wednesday 1/9/13

最佳答案

一旦您消除了星期几,您就可以转换其余的值。

以下工作:

select cast(right(col, len(col) - charindex(' ', col)) as date)
from (select 'Wednesday 1/9/13' as col) t;

编辑:

Aaron 提出了一个很好的观点。您可以使用 convert 确保转换。样式为“1”:
select convert(date, right(col, len(col) - charindex(' ', col)) , 1)
from (select 'Wednesday 1/9/13' as col) t;

(101 不起作用,因为它需要 4 位数的年份。)

关于SQL Server : convert string with format dddd mm/dd/yy to date,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18116346/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com