Your procedure is open to injection if the user supplies the value passed into the variable, or if someone finds a way to execute the stored procedure passing in specially-crafted, malicious code. Google my user name for an amusing comic based on this.
Since you're in a stored procedure, you can check the variable, and then do your SELECT statement based on the variable supplied:
IF @featuretype = 'mobile'
BEGIN
select TOP 3 *
from featuredtypes_v
where featuredtypes_v.MobilePage=1
order by featuredtypes_v.priority desc
END
IF @featuretype = 'login'
BEGIN
select TOP 3 *
from featuredtypes_v
where featuredtypes_v.LoginPage=1
order by featuredtypes_v.priority desc
END
-- etc...
Alternately, you can put the criteria in your WHERE clause in one query:
select TOP 3 *
from featuredtypes_v
where (featuredtypes_v.MobilePage=1 AND @featuretype = 'Mobile') OR
(featuredtypes_v.LoginPage=1 AND @featuretype = 'Login') OR
(featuredtypes_v.IndexPage=1 AND @featuretype = 'Index')
order by featuredtypes_v.priority desc
@featuretypeis;drop table featuredtypes_v; --– juergen d Aug 21 '12 at 15:23