2

这是一个视图的来源,我使用这个视图作为名为 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  

我想用这个过程改变视图控件

        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
4

1 回答 1

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
于 2013-05-02T23:37:45.503 回答