在sql中
空值有NULL 和''的形式
当是NULL的时候用 IS NULL判断
当是''的时候用 =''判断
比如
select * from table where enddate IS NULL;
select * from table where str='';
oracle:
select (nvl(t.num_1, 0)+t.num_2) from table t
sql server:
select (isnull(t.num_1, 0)+t.num_2) from table t
select (nvl(t.num_1, 0)+t.num_2) from table t
用isnull方法判断为空不为空~