存储过程SQL中受限制的用户输入值

时间:2014-01-10 09:06:43

标签: sql sql-server stored-procedures

create procedure db.Test
@input1 varchar(max), @input2 {Either 'yes' or 'no'}

我希望用户的input2被限制为“是”'或者没有'。任何人都可以为我提供语法。

我发现synax是默认值

@input2 varchar(max) default 'yes'

但无法找到限制输入的内容。

3 个答案:

答案 0 :(得分:4)

您需要使用if语句进行检查。没有“限制”验证器可以满足您的需求。

create procedure db.Test @input1 varchar(max), @input2 varchar(3)
as
begin
    if @input2 not in ('yes', 'no')
    begin
       --raiserror or similar
       return
    end

(...)

end
go

答案 1 :(得分:1)

您可以为RAISERROR创建自己的自定义错误消息。

exec sp_addmessage @msgnum=50010,@severity=1,@msgtext='Invalid input parameters'

在此之后,errorid 50010将指向消息Invalid input parameters。

create procedure db.Test @input1 varchar(max), @input2 varchar(3)
as
begin
    if @input2 not in ('yes', 'no')
    begin
      RAISERROR ( 50010 ,1,1)
    end

(...)

end
go

答案 2 :(得分:0)

你总是可以使用一个案例来解决这个问题,我为你写了这个例子,你可以用它来探索一下。

设置serveroutput     设置验证

declare
Ship_Value Number(1) := &ShipNumber;
ship_method_type varchar(20);
ship_current_date varchar(20);

begin
select to_char(sysdate,'DD-Mon-YYYY HH24:MI:SS')
into ship_current_date
from dual;

case Ship_Value when 1 then
select ship_method_desc
into ship_method_type
from ship_method
where ship_method_id_no = 1;  
dbms_output.put_line('Date: ' || ship_current_date);
dbms_output.put_line('Shipping method 1 is:' || ship_method_type);

when 2 then
select ship_method_desc
into ship_method_type
from ship_method
where ship_method_id_no = 2;
dbms_output.put_line('Date: ' || ship_current_date);
dbms_output.put_line('Shipping method 2 is:' || ship_method_type);

when 3 then 
select ship_method_desc
into ship_method_type
from ship_method
where ship_method_id_no = 3;
dbms_output.put_line('Date: ' || ship_current_date);
dbms_output.put_line('Shipping method 3 is:' || ship_method_type);

else
dbms_output.put_line('Date: ' || ship_current_date);
dbms_output.put_line('only 1-3 exists');
end case;
end;

您可以对yes或no输入使用类似的代码。 希望这会有所帮助:)