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

Oracle
如何从Oracle 9i SQL*Loader中生成外部表定义
简单冷备份恢复操作步骤
解决ASM无法启动问题
将Oracle的数据导入EXCEL中的方法
Oracle数据库在线备份原理
利用SQL * Plus复制遗留的Oracle数据表
分析Oracle下导出某用户所有表的方法
利用SQL *Plus复制遗留的Oracle数据表
解决Oracle下的undo空间过大的问题
如何使用Oracle 10gR2's RMAN进行加密备份
利用多个转储文件导出大量Oracle数据
用Rsync备份Dreamhost 到Windows 上
从Access 2000数据库转移到Oracle 9i
利用Oracle执行计划机制提高查询性能
Oracle的自动数据库诊断监控程序剖析
教你Oracle的数据缓冲区是如何工作
Oracle DBA数据库日常维护完全手册
合理设置数据库以提高查询统计速度
Oracle数据库数据锁定机制全面解析
DBA 应遵循的 Oracle 调优原则

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


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-10-31   浏览: 71 ::
收藏到网摘: 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] )