SQL SELECT Previous MMYY as varchar(4)

血红的双手。 提交于 2019-12-01 14:48:23

Try this expression:

SELECT STUFF(CONVERT(VARCHAR(10), DATEADD(MONTH, -1, GETDATE()), 101), 3, 6, '')

Use this:

;WITH PrevMonth AS (
   SELECT LEFT(REPLACE(CONVERT(date, DATEADD(m, -1, getdate())), '-', ''), 6) AS YYYYMM
)
SELECT SUBSTRING(YYYYMM, 5, 2) + SUBSTRING(YYYYMM, 3, 2) AS MMYY 
FROM PrevMonth  

The CTE yields the date of previous month in YYYYMM format. Using SUBSTRING the format is rearranged to produce the required output.

If you are using SQL Server 2012+ it's a lot easier to get the desired result using FORMAT:

SELECT FORMAT(DATEADD(m, -1, getdate()), 'MMyy') AS MMYY

you can get what you want using

TO_CHAR(add_months(sysdate,-1), 'MMYY')

of course you can replace sysdate with timestamp, if necessary.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!