表结构如下CREATE TABLE BarcodeRunwate
(
Calss int,
HeadLong int,
RunWateLong int,
Head varchar(10),
RunWate decimal(20,0)
)alter Procedure CreatBarCode
AS
Declare @Maxbarcode varchar(50)
BEGIN
SELECT @Maxbarcode=Head+Substring('00000000',1,(8-Len(RunWate)))+CONVERT(VARCHAR(20),RunWate) FROM BarcodeRunwate where Calss=1
UPDATE BarcodeRunwate SET RunWate=RunWate+1
END
RETURN SELECT @Maxbarcode
我要实现的语句大概是这个意思,不过这是有语法错误的。
意思就是要把表里面的值直接用SQL语句设置为某个存储过程过的结果,不知道这种想法是荒唐不可行的。还是我的语句有错误,不是这种写法。求高手指点。谢谢!Declare @aa varchar(50)
set @aa=(exec CreatBarCode)
SELECT @AAUPDATE BookRecord SET BardCode=exec CreatBarCode
where BardCode='aaaBarCode)'

解决方案 »

  1.   

    Msg 156, Level 15, State 1, Line 2
    在关键字 'exec' 附近有语法错误。
      

  2.   


    CREATE TABLE BarcodeRunwate
    (
    Calss int,
    HeadLong int,
    RunWateLong int,
    Head varchar(10),
    RunWate decimal(20,0)
    )alter Procedure CreatBarCode(@Maxbarcode varchar(50) output)
    AS
    BEGIN
    SELECT @Maxbarcode=Head+Substring('00000000',1,(8-Len(RunWate)))+CONVERT(VARCHAR(20),RunWate) FROM BarcodeRunwate where Calss=1
    UPDATE BarcodeRunwate SET RunWate=RunWate+1
    END
    godeclare @maxbarcode varchar(50)
    exec CreatBarCode @maxbarcode output
    select @maxbarcode
      

  3.   


    CREATE TABLE BarcodeRunwate
    (
    Calss int,
    HeadLong int,
    RunWateLong int,
    Head varchar(10),
    RunWate decimal(20,0)
    )alter Procedure CreatBarCode(@Maxbarcode varchar(50) output)
    AS
    BEGIN
    SELECT @Maxbarcode=Head+Substring('00000000',1,(8-Len(RunWate)))+CONVERT(VARCHAR(20),RunWate) FROM BarcodeRunwate where Calss=1
    UPDATE BarcodeRunwate SET RunWate=RunWate+1
    END
    godeclare @maxbarcode varchar(50)
    exec CreatBarCode @maxbarcode output
    select @maxbarcodeUPDATE BookRecord SET BardCode=@maxbarcode
    where BardCode='aaaBarCode)'
      

  4.   

    干脆再写个存储过程来调用上一个存储过程 一共有3中方法 
    第一是用 OUTPUT参数第二是用临时表 第三是声明一个变量,用exec(@sql)执行
      

  5.   

    具体的参考 :
    第一种方法: 使用output参数USE AdventureWorks;
    GO
    IF OBJECT_ID ( 'Production.usp_GetList', 'P' ) IS NOT NULL 
        DROP PROCEDURE Production.usp_GetList;
    GO
    CREATE PROCEDURE Production.usp_GetList @product varchar(40) 
        , @maxprice money 
        , @compareprice money OUTPUT
        , @listprice money OUT
    AS
        SELECT p.name AS Product, p.ListPrice AS 'List Price'
        FROM Production.Product p
        JOIN Production.ProductSubcategory s 
          ON p.ProductSubcategoryID = s.ProductSubcategoryID
        WHERE s.name LIKE @product AND p.ListPrice < @maxprice;
    -- Populate the output variable @listprice.
    SET @listprice = (SELECT MAX(p.ListPrice)
            FROM Production.Product p
            JOIN  Production.ProductSubcategory s 
              ON p.ProductSubcategoryID = s.ProductSubcategoryID
            WHERE s.name LIKE @product AND p.ListPrice < @maxprice);
    -- Populate the output variable @compareprice.
    SET @compareprice = @maxprice;
    GO
    另一个存储过程调用的时候:Create Proc Test
    as
    DECLARE @compareprice money, @cost money 
    EXECUTE Production.usp_GetList '%Bikes%', 700, 
        @compareprice OUT, 
        @cost OUTPUT
    IF @cost <= @compareprice 
    BEGIN
        PRINT 'These products can be purchased for less than 
        $'+RTRIM(CAST(@compareprice AS varchar(20)))+'.'
    END
    ELSE
        PRINT 'The prices for all products in this category exceed 
        $'+ RTRIM(CAST(@compareprice AS varchar(20)))+'.'
    第二种方法:创建一个临时表create proc GetUserName
    as
    begin
        select 'UserName'
    endCreate table #tempTable (userName nvarchar(50))
    insert into #tempTable(userName)
    exec GetUserNameselect #tempTable--用完之后要把临时表清空
    drop table #tempTable--需要注意的是,这种方法不能嵌套。例如:  procedure   a   
      begin   
          ...   
          insert   #table   exec   b   
      end   
        
      procedure   b   
      begin   
          ...   
          insert   #table    exec   c   
          select   *   from   #table     
      end   
        
      procedure   c   
      begin   
          ...   
          select   *   from   sometable   
      end  --这里a调b的结果集,而b中也有这样的应用b调了c的结果集,这是不允许的,
    --会报“INSERT EXEC 语句不能嵌套”错误。在实际应用中要避免这类应用的发生。
    第三种方法:声明一个变量,用exec(@sql)执行:1);EXEC 执行SQL语句declare @rsql varchar(250)
            declare @csql varchar(300)
            declare @rc nvarchar(500)
            declare @cstucount int
            declare @ccount int
            set @rsql='(select Classroom_id from EA_RoomTime where zc='+@zc+' and xq='+@xq+' and T'+@time+'=''否'') and ClassroomType=''1'''
            --exec(@rsql)
            set @csql='select @a=sum(teststucount),@b=sum(classcount) from EA_ClassRoom where classroom_id in '
            set @rc=@csql+@rsql
            exec sp_executesql @rc,N'@a int output,@b int output',@cstucount output,@ccount output--将exec的结果放入变量中的做法
            --select @csql+@rsql
            --select @cstucount本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/fredrickhu/archive/2009/09/23/4584118.aspx
      

  6.   

    用函数的话,不能UPDATE吧?
    CREATE FUNCTION ReturnBarCode() RETURNS varchar(50) AS
    BEGIN
    Declare @Maxbarcode varchar(50)
    SELECT @Maxbarcode=Head+Substring('00000000',1,(8-Len(RunWate)))+CONVERT(VARCHAR(20),RunWate) FROM BarcodeRunwate where Calss=1
    UPDATE BarcodeRunwate SET RunWate=RunWate+1
    RETURN  @Maxbarcode
    END
    Msg 443, Level 16, State 2, Procedure ReturnBarCode, Line 5
    在函数内不正确地使用了 'UPDATE'。