截取年份,月份
select year(getdate()) , month(getdate())
截取的月份如果是个位数,月份前面没有补0
select year(''2020-01-01'') , month('2020-01-01')
截取的月份如果是个位数,月份前面补0
select substring( convert(VARCHAR(7),getdate(),120), 6,7 )
截取年份,月份
select year(getdate()) , month(getdate())
截取的月份如果是个位数,月份前面没有补0
select year(''2020-01-01'') , month('2020-01-01')
截取的月份如果是个位数,月份前面补0
select substring( convert(VARCHAR(7),getdate(),120), 6,7 )
有建议,请留言!