Sqlcmd减去日期

时间:2017-06-21 12:27:11

标签: batch-file sqlcmd

我创建了以下批处理文件来运行查询,并将结果保存在.csv文件中。

sqlcmd -S MyLogin -i LocationToSql -E -o "C:\Users\user\Desktop\query result\result2-%date:~-4,4%-%date:~-7,2%-%date:~-10,2%.csv" -s";" -w 700

现在,我将结果保存为: result2-2017-06-21.csv
但是,我希望它是: result2-2017-06-20.csv

但我不知道如何减去1天的命令 日期定义如下:

%date:~-4,4%-%date:~-7,2%-%date:~-10,2%

1 个答案:

答案 0 :(得分:1)

我稍微修改了我最近发布的脚本:

setlocal enabledelayedexpansion

set day=%date:~-10,2%
set month=%date:~-7,2%
set year=%date:~-4,4%

echo.%day%|findstr /r /b "0">nul&&set day=%day:~1%
echo.%month%|findstr /r /b "0">nul&&set month=%month:~1%
set /a day-=1
if %day% lss 1 (
    set /a day+=30
    set /a month-=1
    if !month!==2 (set /a day-=2
                   set /a leap=year%%4
                   if !leap!==0 set day+=1
    )
    for /l %%# in (1 2 7) do if %month%==%%# set /a day+=1
    for %%# in (8 10 12) do if %month%==%%# set /a day+=1
    if !month!==0 (
        set month=12
        set /a year-=1
    )
)
set day=0%day%
set month=0%month%

echo %year%-%month:~-2%-%day:~-2%

这将以YYYY-MM-DD格式回显昨天的日期。您还可以使用set /a day-=1编辑该行以减去多天。