这是视图的来源,我使用此视图作为名为buscacancelados的过程的基础:
SELECT NUMERO FROM dbo.CTRC
WHERE (EMITENTE = 504) AND (MONTH(EMISSAODATA) = 3)
AND (YEAR(EMISSAODATA) = 2013)
此过程返回集合中缺少的数字
alter proc buscarcancelado (@emp int) as
begin
set nocount on;
declare @min int --- declare the variavels to be used
declare @max int
declare @I int
IF OBJECT_ID ('TEMP..#TempTable') is not null -- Controls if exists this table
begin
drop table #TempTable -- If exist delete
end
create table #TempTable
(TempOrderNumber int)-- create a temporary table
SELECT @min = ( SELECT MIN (numero)
from controlanum with (nolock)) -- search the min value of the set
SELECT @max = ( SELECT Max (numero)
from controlanum with (nolock)) -- search the max value of the set
select @I = @min -- control where begins the while
while @I <= @max -- finish with the high number
begin
insert into #TempTable
select @I
select @I = @I + 1
end
select tempordernumber from #TempTable
left join controlanum O with (nolock)
on TempOrderNumber = o.numero where o.numero is null
end
我想用这个程序改变视图controlanum
create proc filtraperiodo (@emp int,@mes int,@ano int)as
select numero from ctrc where
EMITENTE = 504
and MONTH (EMISSAODATA ) = 3 and YEAR (EMISSAODATA)=2013
我想要这样的东西
SELECT @min = ( SELECT MIN (numero) from filtraperiodo 504,2,2013
答案 0 :(得分:1)
将controlanum创建为表值函数而不是视图
IF EXISTS (SELECT * FROM dbo.sysobjects WHERE ID = OBJECT_ID('[dbo].[controlanum]') AND XTYPE IN ('FN', 'IF', 'TF'))
DROP FUNCTION [dbo].[controlanum]
GO
CREATE FUNCTION [dbo].[controlanum] (
@emp int
,@mes int
,@ano int
)
RETURNS @numeros TABLE (numero int)
AS
BEGIN
INSERT @numeros
SELECT numero
FROM ctrc WITH (NOLOCK)
WHERE EMITENTE = @emp
AND MONTH (EMISSAODATA ) = @mes
AND YEAR (EMISSAODATA) = @ano
RETURN
END
GO
在任何地方你引用controlanum,传递你的3个过滤器值。例如:
--...other code here...
SELECT @min = MIN(numero)
FROM dbo.controlanum(@emp, @mes, @ano)
SELECT @max = MAX(numero)
FROM dbo.controlanum(@emp, @mes, @ano)
--...other code here...
SELECT tempordernumber
FROM #TempTable A
LEFT JOIN dbo.controlanum(@emp, @mes, @ano) O
ON A.TempOrderNumber <> O.numero
WHERE O.numero IS NULL