码迷,mamicode.com
首页 > 数据库 > 详细

sql 存储过程 in 的两种写法

时间:2014-11-04 17:13:07      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   sp   div   log   bs   as   

最近又忘记存储过程 除了exec 动态写法的另外一种,这里记录一下,方便查找

写法1,动态语句

 

CREATE PROCEDURE sp_CountShiftWish 
    @strids varchar (1024)   /*strids   是id列表,   类似1,2,3*/ 
AS 
   exec (select * from student where id in(+@strids+))
 
go

 

写法2,索引查找

CREATE   PROCEDURE   sp_CountShiftWish 
   @strids   varchar   (1024)   /*strids   是id列表,   类似1,2,3*/ 
AS 
    select   *   from   student   where  charindex(,+ltrim(id)+,,,+@strids+,)>0 
go

 

sql 存储过程 in 的两种写法

标签:style   blog   color   ar   sp   div   log   bs   as   

原文地址:http://www.cnblogs.com/linyijia/p/4073817.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!