1. nvl 函数的妙用 当传入参数比较多,切不要求必输的情况下,在一个sql中即在不使用字符串拼接动态sql的情况下使用nvl函数使非必要参数 对应的 字段 作为条件 使之失效。例如: select name, sex, address from t_student where name like '%明%' and nation = nvl(p_nation, nation); 解释下这
1、select语句中的null问题: (1)包含null的表示式都为null (2)null永远不等于null (3)如果集合中含有null,不能使用not in,但可以使用in not in相当于<>all 举例解释:a not in(3,4,null)相当于a!=3 and a!=4 and a!=null,a!=null永远为false (4)null值在order by中显示