sql存储过程带in条件的解决方法
问题:
if (object_id('procedure_table', 'P') is not null)
drop proc procedure_table
go
create proc procedure_table(@isdelete int, @id varchar(20))
as
select * from tableName where isdelete = @isdelete and id in (@id);
go
上存储过程在执行后没有查到任何东西,原因是存储过程将@id当作一个参数,而不是字符串拼接,所以如果id有几个的话,那么后面的语句就是id in ('1,2,3') ,故查不到数据。
解决方法:(拼接Sql语句)
if (object_id('procedure_table', 'P') is not null)
drop proc procedure_table
go
create proc procedure_table(@isdelete int, @id varchar(20))
as
exec ('select * from tableName where isdelete = ' + @isdelete + ' and id in ( '+ @id + ' )')
go
exec procedure_table 0,'1,2,3'
if (object_id('procedure_table', 'P') is not null)
drop proc procedure_table
go
create proc procedure_table(@isdelete int, @id varchar(20))
as
select * from tableName where isdelete = @isdelete and id in (@id);
go
上存储过程在执行后没有查到任何东西,原因是存储过程将@id当作一个参数,而不是字符串拼接,所以如果id有几个的话,那么后面的语句就是id in ('1,2,3') ,故查不到数据。
解决方法:(拼接Sql语句)
if (object_id('procedure_table', 'P') is not null)
drop proc procedure_table
go
create proc procedure_table(@isdelete int, @id varchar(20))
as
exec ('select * from tableName where isdelete = ' + @isdelete + ' and id in ( '+ @id + ' )')
go
exec procedure_table 0,'1,2,3'
--------------------------更多存储过程知识---------------------------------
Ø 用户自定义存储过程
1、 创建语法
create proc | procedure pro_name [{@参数数据类型} [=默认值] [output], {@参数数据类型} [=默认值] [output], .... ] as SQL_statements
2、 创建不带参数存储过程
--创建存储过程 if (exists (select * from sys.objects where name = 'proc_get_student')) drop proc proc_get_student go create proc proc_get_student as select * from student; --调用、执行存储过程 exec proc_get_student;
3、 修改存储过程
--修改存储过程 alter proc proc_get_student as select * from student;
4、 带参存储过程
--带参存储过程 if (object_id('proc_find_stu', 'P') is not null) drop proc proc_find_stu go create proc proc_find_stu(@startId int, @endId int) as select * from student where id between @startId and @endId go exec proc_find_stu 2, 4;
5、 带通配符参数存储过程
--带通配符参数存储过程 if (object_id('proc_findStudentByName', 'P') is not null) drop proc proc_findStudentByName go create proc proc_findStudentByName(@name varchar(20) = '%j%', @nextName varchar(20) = '%') as select * from student where name like @name and name like @nextName; go exec proc_findStudentByName; exec proc_findStudentByName '%o%', 't%';
6、 带输出参数存储过程
if (object_id('proc_getStudentRecord', 'P') is not null) drop proc proc_getStudentRecord go create proc proc_getStudentRecord( @id int, --默认输入参数 @name varchar(20) out, --输出参数 @age varchar(20) output--输入输出参数 ) as select @name = name, @age = age from student where id = @id and sex = @age; go -- declare @id int, @name varchar(20), @temp varchar(20); set @id = 7; set @temp = 1; exec proc_getStudentRecord @id, @name out, @temp output; select @name, @temp; print @name + '#' + @temp;
7、 不缓存存储过程
--WITH RECOMPILE 不缓存 if (object_id('proc_temp', 'P') is not null) drop proc proc_temp go create proc proc_temp with recompile as select * from student; go exec proc_temp;
8、 加密存储过程
--加密WITH ENCRYPTION if (object_id('proc_temp_encryption', 'P') is not null) drop proc proc_temp_encryption go create proc proc_temp_encryption with encryption as select * from student; go exec proc_temp_encryption; exec sp_helptext 'proc_temp'; exec sp_helptext 'proc_temp_encryption'; >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 蕃薯耀 2013年11月14日 15:32:03 星期四
相关推荐
### SQL存储过程IN参数的解决办法 #### 方法一:使用临时表进行参数处理 此方法主要利用了SQL Server中的临时表来实现对多个输入参数的处理。具体步骤如下: 1. **定义变量**:首先定义了一个`nvarchar(200)`类型...
本文将探讨在SQL Server中,存储过程与`WHERE IN`子句结合使用时,处理多值参数的几种方法。 **方法一:拼接SQL字符串并调用`EXEC`** 这是最简单也是最直观的方法。你可以在存储过程中接收一个包含多个值的参数,...
SQL存储过程是数据库管理系统中一组为了完成特定功能的SQL语句集合,它们被编译并存储在数据库中,可以被多次调用,提高了代码的复用性和执行效率。本篇文章将深入探讨SQL存储过程的学习与实例,以帮助你更好地理解...
存储过程是一组为了完成特定功能的SQL语句集合,它可以接受输入参数并可返回输出参数,还可以包含逻辑控制流程,比如条件判断、循环、分支等。SQL Server中的存储过程与程序设计语言类似,具有自己的数据类型、流程...
### PL/SQL存储过程编程详解 #### 一、Oracle应用编辑方法概览 在Oracle数据库的应用开发中,存在多种编辑方法和技术,它们各有特点和适用场景。以下是对这些方法的概述: 1. **Pro*C/C++**: 这是一种C语言与...
MySQL存储过程是数据库管理系统中的一种重要功能,它允许开发者预编译一系列SQL语句并封装成一个可重复使用的单元,从而提高数据处理的效率和代码的复用性。本教程将深入探讨MySQL存储过程的创建、调用以及相关概念...
动态SQL存储过程是数据库编程中一个非常实用的技术,特别是在处理批处理操作时,如批量删除、更新等场景。本文将深入探讨动态SQL的概念、优点、使用方法以及在存储过程中的应用,结合给定的"动态SQL存储过程代码...
在SQL Server中,存储过程和函数是数据库管理与开发中的重要组成部分,它们为数据库操作提供了高效、可重用和安全的途径。以下是关于SQL Server存储过程和函数的一些常用知识点: 1. **存储过程(Stored Procedures...
通过使用存储过程,开发者可以在一次操作中执行多个 SQL 语句和逻辑处理。 #### 二、创建存储过程 创建存储过程需要用到 `CREATE PROCEDURE` 语句。以下是一个简单的示例: ```sql CREATE PROCEDURE ...
SQL Server 提供了一些方法来实现这一目标,包括使用UNPIVOT操作和创建自定义存储过程。在本案例中,我们将详细探讨如何在SQL Server 2005中进行列转行的操作,特别是通过存储过程来实现。 首先,列转行通常用于...
标题与描述概述的知识点是关于如何使用PL/SQL...通过以上解析,我们可以看到,PL/SQL存储过程为从文件导入数据到数据库提供了一个强大而灵活的解决方案,不仅提高了数据处理的效率,也增强了数据管理的可靠性和安全性。
本文将详细介绍SQL Server中存储过程的基本概念、创建、调用、删除方法以及相关的数据类型、运算符和流程控制。 #### 二、创建存储过程 在SQL Server中,创建存储过程使用`CREATE PROCEDURE`语句。一个典型的存储...
存储过程是预编译的SQL语句集合,而游标则用于逐行处理数据。下面将详细探讨这两个概念以及它们在SQL Server和Oracle中的应用。 首先,我们来看看存储过程。存储过程是一种数据库对象,它允许开发者将一系列SQL语句...
4. **扩展SQL的功能**:存储过程支持变量、条件判断、循环等控制结构,弥补了SQL语言的局限,提供了更强大的编程能力。 #### 二、存储过程参数详解 存储过程的一个关键特性在于其参数机制,参数用于存储过程与外部...
在SQL中,存储过程是一种预编译的SQL代码集合,它可以执行特定的任务并被多次调用,从而提高数据库操作的效率。在这个特定的场景中,我们关注的是如何使用存储过程来实现“横向显示列的数据”。这通常涉及到数据的...
通过这个实验,学生将深入理解存储过程的概念,掌握创建、调用和管理存储过程的技巧,增强T-SQL编程能力,同时训练逻辑思维和问题解决能力。实验报告的撰写可以帮助学生反思自己的学习成果,识别尚待提高的领域,为...
总的来说,DB2 SQL存储过程是数据库管理和应用程序开发中的重要工具,它们提高了代码的可重用性和数据库操作的效率,同时提供了更高级别的抽象,使得数据库逻辑更容易管理和维护。在编写存储过程时,应注意其结构...
- `NO SQL | CONTAINS SQL | READS SQL DATA | MODIFIES SQL DATA`:用于声明存储过程中SQL语句的类型。 #### 2. 调用存储过程 - **语法**:`CALL procedure_name ( [parameter_value, ...] )` - **参数说明**: ...