几个查询中的SQL函数

    今天,统计kpi的人给小批一下,我在群组中学到几个较有用的函数,记录于此。
1. decode
decode 就像 if_then_else,比如你有一张 fish 表,有一列为 death_date , 此列在每一行包含鱼的死亡日期为空。假如你想查询为 dead 或 alive, decode 可以帮到你。
selete name_of_fish, decode(death_date, null , 'alive', 'dead')
living_or_not
from fish;
则如果 death_date 的值为空, decode 返回值为 'alive', 否则为 'dead'
[color=red]2.nvl

nvl函数可以在一行列中用空值代替一个短语,数字,或日期。
select name_of_fish, nvl(sex, 'unknown') sex
from fish;
当一条鱼在sex列中有空值的时候,单词 unknown 会出现在其位置
3.cast
cast 是进行类型转换的,可以针对各种oracle数据类型, 修改的是用户的数据类型.
select cast(a as number(8,4)) from t1;

cast ( expression as data_type ) [/color] 

你可能感兴趣的:(java,工作)