常用查询技巧 1.获取数据的前3(n)行 ; 2.SQL语句中if语句 在SQL语句中没有直接的if语句,但是有两个函数:DECODE和CASE,他们能够实现if语句的功能 2.1)decode --语法:decode (条件, 值1, 返回值1, 值2, 返回值2, ... 值n, 返回值n, 默认值) --含义: if 条件=值1 then return(返回值1) elsif 条件=值2 then return(返回值2) ... elsif 条件=值n then return(返回值n)