我有一个这样的存储过程:
ALTER procedure [dbo].[ParkingDeatailsReportnew]
@startdate nvarchar(100),
@enddate nvarchar(100)
as
begin
DECLARE @cols AS NVARCHAR(MAX), @query AS NVARCHAR(MAX)
select @cols =
STUFF((SELECT distinct ',' + QUOTENAME(Vtype) from VType_tbl FOR XML PATH(''), TYPE).value('.', 'NVARCHAR(MAX)') ,1,1,'')
set @query =
'SELECT Date, ' + @cols + '
from ( select v.Vtype, convert(date, dtime) as Date
from Transaction_tbl t inner join VType_tbl v on t.vtid = v.vtid where dtime between ''' + @startdate + ''' and ''' + @enddate +
'''and locid IN ' + (select CAST(l.Locid as varchar(max)) from Location_tbl l)
+ ' ) d pivot ( count(Vtype) for Vtype in (' + @cols + ') ) p '
execute(@query)
end
执行此操作时出现如下错误:
子查询返回超过 1 个值。当子查询跟随 =、!=、<、<=、>、>= 或子查询用作表达式时,这是不允许的。
我如何在子查询中传递超过 1 个值?