I am trying to store the the the previous days date in a variable in the format 'MMDDYYYY' so I can use it as a portion of a CSV filename in a bulk insert statement. So far I have:
SELECT @fdate = CONVERT(VARCHAR(8), DATEADD(day,-1,GetDate()), 112) AS [MMDDYYYY]
I am getting the following error:
Incorrect syntax near the keyword 'AS'.
I have also tried using SET @fdate
Any help would be appreciated, I am sure this is something simple I am missing, since I am new to SQL Server.
SELECT @fdate = CONVERT(VARCHAR(8), DATEADD(day,-1,GetDate()), 112) AS [MMDDYYYY]
I am getting the following error:
Incorrect syntax near the keyword 'AS'.
I have also tried using SET @fdate
Any help would be appreciated, I am sure this is something simple I am missing, since I am new to SQL Server.