简体   繁体   中英

How do I “Declare the scalar variable” in a VIEW in Sql Server (2005)

I´m trying to create a VIEW in SQL Server 2005.

The SQL code is working as such (I´m using it in VS2008), but in SQL Server I´m unable to save it, as error message "Declare the scalar variable @StartDate" and "Declare the scalar variable @EndDate" pops up.

Here is the code:

WITH Calendar AS (SELECT     CAST(@StartDate AS datetime) AS Date
     UNION ALL
     SELECT     DATEADD(d, 1, Date) AS Expr1
     FROM         Calendar AS Calendar_1
     WHERE     (DATEADD(d, 1, Date) < @EndDate))
    SELECT     C.Date, C2.Country, COALESCE (SUM(R.[Amount of people per day needed]), 0) AS [Allocated testers]
     FROM         Calendar AS C CROSS JOIN
                            dbo.Country AS C2 LEFT OUTER JOIN
                            dbo.Requests AS R ON C.Date BETWEEN R.[Start date] AND R.[End date] AND R.CountryID = C2.CountryID
     GROUP BY C.Date, C2.Country

And my question is of course - exactly how should I declare them?

I tried to put the following first in the code:

DECLARE @StartDate smalldatetime
DECLARE @EndDate smalldatetime

But that didn´t do the trick, just as I expected - it only gave me another pop-up message:

"The Declare cursor SQL construct or statement is not supported."

As Alex K has mentioned, you should write it as a inline table valued function. Here is the article that describes about it.

In short, syntax would be something like

CREATE FUNCTION dbo.GetForPeriod
    ( @StartDate datetime, @EndDate datetime) 
RETURNS TABLE 
RETURN 
   SELECT  [[ your column list ]]
   FROM    [[ table list]
   WHERE   [[some column] BETWEEN @StartDate AND @EndDate

You can have one select query (however complex, can use CTE). And then you will use it as

SELECT * FROM dbo.GetForPeriod('1-Jan-2010', '31-Jan-2010')

If by VIEW you mean an SQL Server native view ( CREATE VIEW ... ) then you cannot use local variables at all (you would use a table-valued udf instead).

If you mean something else, then adding DECLARE @StartDate DATETIME, @EndDate DATETIME makes that statement parse fine, is it the entirety of the SQL?

Here is a sample query that uses CTE to nicely emulate internal variable construction. You can test-run it in your version of SQL Server.

CREATE VIEW vwImportant_Users AS
WITH params AS (
    SELECT 
    varType='%Admin%', 
    varMinStatus=1)
SELECT status, name 
    FROM sys.sysusers, params
    WHERE status > varMinStatus OR name LIKE varType

SELECT * FROM vwImportant_Users

yielding output:

status  name
12      dbo
0       db_accessadmin
0       db_securityadmin
0       db_ddladmin

also via JOIN

WITH params AS ( SELECT varType='%Admin%', varMinStatus=1)
SELECT status, name 
    FROM sys.sysusers INNER JOIN params ON 1=1
    WHERE status > varMinStatus OR name LIKE varType

also via CROSS APPLY

WITH params AS ( SELECT varType='%Admin%', varMinStatus=1)
SELECT status, name 
    FROM sys.sysusers CROSS APPLY params
    WHERE status > varMinStatus OR name LIKE varType

尝试用AX和AY替换你所有的@ X,@ Y,添加到你的代码中:FROM(SELECT X ='literalX',Y ='literalY')然后你把所有的文字放在一个地方,只有一个副本他们

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM