1.包含null的表达式都为空 select salary*12+nvl(bonus,0) nvl是虑空函数 2. null值永远!=null select * from emp where bonus=null 得到的结果是0行被选中 正确的写法是 is null 或者 is not null 3.如果集合中含有null,不能使用not in 但是可以使用in 4.null值的排序,在降序中null值是排在最前面的 因为oracle中默认null值是最大 解决的办法 sel…
sql中的case when 有点类似于Java中的switch语句,比较灵活,但是在Mysql中对于Null的处理有点特殊 Mysql中case when语法: 语法1: CASE case_value WHEN when_value THEN statement_list [WHEN when_value THEN statement_list] ... [ELSE statement_list] END CASE 语法2: CASE WHEN search_condition THEN s…
两个值互换有以下三种方式: 使用临时变量(此种方法便于理解) x = 10; y = 20; //begin int temp = x; x = y; y = temp; //end; //此时x = 20; y = 10; 利用加减来实现(此种方法只适应于数值比较小的情况,如果数值较大,会超界) x = 10; y = 20; //begin x = x + y ; y = x - y; x = x - y; //end; //此时x = 20; y = 10; 利用位运算实现(不用考虑数值大…
此示例显示如何在源集合中处理可能的 null 值. IEnumerable<T> 等对象集合可包含值为 null 的元素. 如果源集合为 null 或包含值为 null 的元素,并且查询不处理 null 值,则在执行查询时将引发 NullReferenceException. 可采用防御方式进行编码,以避免空引用异常,如以下示例所示: var query1 = from c in categories where c != null join p in products on c.ID equ…