SQL Server 将一个月添加到表示为 8 位小数的日期
我们使用的 SQL Server 应用程序 (accpac) 将日期表示为 ISO 格式的 8 位小数(例如:今天的日期是 20100802),
我需要为此添加一个月。我已经找到了一种方法,但必须有更好的方法。 我的解决步骤是:
declare @accpacDate as decimal
set @accpacDate = 20100101
declare @date1 as date
declare @date2 as date
set @date1=cast(CAST(@accpacDate as varchar(8)) as datetime) /*get the starting value as a date */
set @date2=DATEADD(month,1,@date1)
select CONVERT(varchar(8),@date2,112) as aVarchar
select convert(decimal,CONVERT(varchar(8),@date2,112)) as aDecimal
A SQL Server application we use (accpac) represents dates as an 8 digit decimal in ISO format (example: today's date is 20100802)
I need to add one month to this. I've found a way to do it, but there must be a better way.
The steps of my solution are:
declare @accpacDate as decimal
set @accpacDate = 20100101
declare @date1 as date
declare @date2 as date
set @date1=cast(CAST(@accpacDate as varchar(8)) as datetime) /*get the starting value as a date */
set @date2=DATEADD(month,1,@date1)
select CONVERT(varchar(8),@date2,112) as aVarchar
select convert(decimal,CONVERT(varchar(8),@date2,112)) as aDecimal
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看来你正在做的事情是正确的。
字符串和日期操作是 SQL 中的核心,没有用于自动转换和操作日期格式的花哨包装器(accpac、内存、shiver)。
您可以将其写入用户函数,以向 accpac 日期添加天数,并返回结果:
那么您可以使用最小代码调用它:
分别给出 20100107 和 20091228
It seems about right what you are doing.
String and Date manipulation is pretty core in SQL, no fancy wrappers for auto-converting and manipulating date formats (accpac, memories, shiver).
You could write that into a user function, to add days to a accpac date, and return the result:
So then you can just call it with min code:
Gives 20100107 and 20091228 respectively