提问人:michaelnelson1024 提问时间:10/28/2023 最后编辑:marc_smichaelnelson1024 更新时间:10/28/2023 访问量:47
如何将日期结果转换为月份名称?
How do I convert date result to month name?
问:
菜鸟在这里..对于这样一个基本问题,我们深表歉意。
我在 SQL Server 中使用,但找不到/弄清楚如何在 Alation 中做同样的事情。datename(month, date)
例:
select datename(month, '1-1-2023')
from myTable
结果:“一月”
我试过:
format(date, month)
format(date, mm)
format(date, M)
format(date, 'month')
format(date, 'mm')
format(date, 'M')
cast(date as month)
cast(date as mm)
cast(date as M)
cast(date as 'month')
cast(date as 'mm')
cast(date as 'M')
datename(month,date)
和其他变化...但我还是被困住了!
答: 暂无答案
评论