在论坛中出现的比较难的sql问题:14(存储过程问题 存储过程参数、存储过程内的参数)

时间:2021-07-07 16:57:05

原文:在论坛中出现的比较难的sql问题:14(存储过程问题 存储过程参数、存储过程内的参数)


最近,在论坛中,遇到了不少比较难的sql问题,虽然自己都能解决,但发现过几天后,就记不起来了,也忘记解决的方法了。

所以,觉得有必要记录下来,这样以后再次碰到这类问题,也能从中获取解答的思路。

1、SQL 数据库中的存储过程的参数问题

http://bbs.csdn.net/topics/390640511?page=1#post-396062228

怎么将SQL数据库中的存储过程中的参数既作为输出变量又作为输出变量?


  1. --drop proc proc_test
  2. --go
  3. create proc dbo.proc_test
  4. @in int,
  5. @out int out,
  6. @in_out int output
  7. as
  8. select @out = @in + @in_out, --1 + 2 = 3
  9. @in_out = @out + 1 --3 + 1 = 4
  10. go
  11. declare @in_p int
  12. declare @out_p int
  13. declare @in_out_p int
  14. set @in_p = 1;
  15. set @in_out_p = 2
  16. exec dbo.proc_test @in_p,
  17. @out_p out,
  18. @in_out_p output
  19. select @in_p, --输入参数
  20. @out_p, --输出参数
  21. @in_out_p --输入,输出参数
  22. /*
  23. (无列名) (无列名) (无列名)
  24. 1 3 4
  25. */

2、在存储过程中的参数问题。

下面是问题:

  1. create table #tableTest(id int identity , name varchar(20),age int,)
  2. go
  3. insert into #tableTest
  4. select '小明',23 union all
  5. select '小红',28 union all
  6. select '小军',27
  7. go
  8. select *from #tableTest
  9. go
  10. create proc procTest
  11. @name varchar(20),
  12. @age int,
  13. @IDs varchar(30)
  14. as
  15. begin
  16. select *from #tableTest where 1=1
  17. end
  18. --当我传入@name参数等于 小明,23岁,还有ID在(1,3)的时候
  19. --我怎么可以弄成可选的参数
  20. --比如,name不为空时候
  21. select *from #tableTest where 1=1 and name like '小明'
  22. --如果name参数为空的时候,IDs参数不为空的时候
  23. select *from #tableTest where 1=1 and id in(1,3)
  24. --请问一下,就有参数不为空的时候存储过程中的SQL追加条件,为空的时候就不追加,这样带可选参数的存储过程怎么写,以及怎么调用,请帮小弟写一个实例
这种问题,本质上就是根据传入的参数不同,进行不同的查询,也就是where 后面的查询条件是动态的。
一般有2中处理方式,一种就是写动态语句,但动态语句由于是动态拼接字符串,所以比较难维护,而且如果存储过程需要执行多次,那么每次都需要重新编译,但每次生成的执行计划,应该是比较优化的。但如果拼接字符串部分,只是少量的话,还是可以用动态语句的,下面我的解法就是用动态语句来实现的,结构清晰,易于维护。
另一种,就是通过在where语句后面写case when来进行判断,这种方法的好处是不用动态拼接语句,但不易于理解,也不易于修改,因为别人不一定能理解你这么写的意思。另一个问题就是性能的问题,因为在原来的公司就用过这种方法,一段时间后,查询非常慢,本来几秒就能出结果,后来几分钟都出不了结果。说实在的,这种方法要求较高的技巧性,也容易出错,不建议使用。
下面是我的解法,用了动态语句来实现,但考虑了维护、测试方面的要求:

  1. --drop table #tableTest
  2. create table #tableTest(id int identity , name varchar(20),age int,)
  3. go
  4. insert into #tableTest
  5. select '小明',23 union all
  6. select '小红',28 union all
  7. select '小军',27
  8. go
  9. select *from #tableTest
  10. go
  11. create proc procTest
  12. @name varchar(20)=null,@age int = null,@IDs varchar(30) = null
  13. as
  14. declare @sql nvarchar(max);
  15. set @sql = '';
  16. set @sql = 'select * from #tableTest where 1 = 1';
  17. set @sql = @sql +
  18. case when @name is not null
  19. then ' and name like ' + QUOTENAME(@name +'%','''')
  20. when @age is not null
  21. then ' and age = ' + cast(@age AS varchar)
  22. when @ids Is not null
  23. then ' and id in (' + @ids +')'
  24. else ' '
  25. end
  26. --打印出语句
  27. select @sql as '语句'
  28. --执行语句
  29. --exec(@sql)
  30. go
  31. exec procTest
  32. /*
  33. 语句
  34. select * from #tableTest where 1 = 1
  35. */
  36. exec procTest '小明',23
  37. /*
  38. 语句
  39. select * from #tableTest where 1 = 1 and name like '小明%'
  40. */
  41. exec procTest @ids = '2,3'
  42. /*
  43. 语句
  44. select * from #tableTest where 1 = 1 and id in (2,3)
  45. */

在论坛中出现的比较难的sql问题:14(存储过程问题 存储过程参数、存储过程内的参数)
在论坛中出现的比较难的sql问题:14(存储过程问题 存储过程参数、存储过程内的参数)
发布了416 篇原创文章 · 获赞 135 · 访问量 94万+