SQL Server 将一个月添加到表示为 8 位小数的日期

发布于 2024-09-13 00:38:35 字数 514 浏览 6 评论 0原文

我们使用的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

苏佲洛 2024-09-20 00:38:36

看来你正在做的事情是正确的。

字符串和日期操作是 SQL 中的核心,没有用于自动转换和操作日期格式的花哨包装器(accpac、内存、shiver)。

您可以将其写入用户函数,以向 accpac 日期添加天数,并返回结果:

create function accpacadd 
(   @accpacdate decimal,
    @days int)
RETURNS decimal
AS BEGIN

declare @date1 as datetime

set @date1=cast(CAST(@accpacDate as varchar(8)) as datetime) /*get the starting value as a date */
set @date1=DATEADD(day, @days, @date1)
return convert(decimal, CONVERT(varchar(8), @date1, 112)) 

END

那么您可以使用最小代码调用它:

select dbo.accpacadd(20100102, 5)
select dbo.accpacadd(20100102, -5)

分别给出 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:

create function accpacadd 
(   @accpacdate decimal,
    @days int)
RETURNS decimal
AS BEGIN

declare @date1 as datetime

set @date1=cast(CAST(@accpacDate as varchar(8)) as datetime) /*get the starting value as a date */
set @date1=DATEADD(day, @days, @date1)
return convert(decimal, CONVERT(varchar(8), @date1, 112)) 

END

So then you can just call it with min code:

select dbo.accpacadd(20100102, 5)
select dbo.accpacadd(20100102, -5)

Gives 20100107 and 20091228 respectively

橘味果▽酱 2024-09-20 00:38:35
SELECT CONVERT(VARCHAR(8),DATEADD(MONTH,1,CONVERT(VARCHAR(8),20100802,112)),112)
SELECT CONVERT(VARCHAR(8),DATEADD(MONTH,1,CONVERT(VARCHAR(8),20100802,112)),112)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文