存储过程

时间:2011-03-23 16:15:17

标签: sql-server stored-procedures

我有一个输入参数categoryid

我想使用此输入参数为categoryfetch创建存储过程。我有一个表category,其中包含categoryidshopidtitlelogicalcode列。

任何人都可以使用一个输入参数告诉存储过程类别提取吗?

2 个答案:

答案 0 :(得分:2)

create procedure categoryfetch 
    @categoryid int
as
    select categoryid, shopid, title, logicalcode 
    from category 
    where categoryid = @categoryid
go

答案 1 :(得分:0)

创建过程categoryfetch  @categoryid int
如  选择shopid,title,logicalcode  来自categoryid = @ categoryid end

的类别

执行它

exec categoryfetch @ categoryid = categoryid