当前位置: 首页 > 图文教程 > 数据库 > Oracle > 使用Instr()与decode()进行多条件组合查询

Oracle
浅谈Oracle数据库SCN号
浅谈DBMS_SCHEDULER如何使用
数据丢失 Oracle闪回
Oracle教程:完全备份的SH文件
Oracle服务器参数文件管理技巧
Oracle认证:向视图中插入数据的方法
Oracle教程:Oracle基础知识整理
使用Java和oracle实现BLOB字段的字符串读取
Oralce 9i安装OID目录服务器说明
Oracle 11gR2重要的4个新特性说明
OpenCalais:为Oracle数据库添加语义元数据为Oracle数据库添加语义元数据
phpBB 3.0.6 RC1简单介绍和下载
Oracle:oracle的体系结构,你了解多少?
怎样才能限制SQL Server只能让指定的机器连接
有关Oracle数据库的备份情况
ORACLE8的分区管理
常见数据库系统之比较 - Oracle数据库
在ORACLE中移动数据库文件
ORACLE常见错误代码的分析与解决(三)
Oracle中如何直接运行OS命令(上)

Oracle 中的 使用Instr()与decode()进行多条件组合查询


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-10-31   浏览: 76 ::
收藏到网摘: n/a

    系统中遇到了要处理多条件组合查询的情况,好比说有4个独立的条件,那么组合出的查询条件便有24种,不可能写24条Sql语句再分别指定给24种组合情况吧,条件数再多点呢,人都会搞疯的。。。。于是我求助于高手,获得了使用instr()和decode()函数的实现方法。

    下面先说明一下instr()的功能和语法:(函数的语法是从http://www.techonthenet.com/oracle/functions/index.htm处得到的,相当清晰明了:)

In Oracle/PLSQL, the instr function returns the location of a substring in a string.

The syntax for the instr function is:

instr (string1, string2, [start_position], [nth_appearance])

string1 is the string to search.

string2 is the substring to search for in string1.

start_position is the position in string1 where the search will start.  This argument is optional.  If omitted, it defaults to 1.  The first position in the string is 1.  If the start_position is negative, the function counts back start_position number of characters from the end of string1 and then searches towards the beginning of string1.

nth_appearance is the nth appearance of string2.  This is optional.  If omiited, it defaults to 1.

再说明一下decode()的功能和语法:

In Oracle/PLSQL, the decode function has the functionality of an IF-THEN-ELSE statement.

The syntax for the decode function is:

decode ( expression , search , result [, search , result]... [, default] )