服务器: 消息 201,级别 16,状态 4,过程 proc_print,行 0
过程 'proc_print' 需要参数 '@wage',但未提供该参数。
 
 

解决方案 »

  1.   

    服务器: 消息 201,级别 16,状态 4,过程 proc_print,行 0
    过程 'proc_print' 需要参数 '@wage',但未提供该参数。
    第一步存储过程可以建立,这是第二步的错误
      

  2.   

    服务器: 消息 201,级别 16,状态 4,过程 proc_print,行 0
    过程 'proc_print' 需要参数 '@wage',但未提供该参数。
    第一步存储过程可以建立,这是第二步的错误
      

  3.   

    try:
    declare @wage money
    declare @money money
    declare @count int
    declare @num intexecute proc_print @wage output,@count output,@num output,@money output
      

  4.   

    查询的结果多于一行的时候不能赋给单个变量,返回NULL。用表变量。