sql如何判断字段的值是不是空值

2024-11-26 16:57:12
推荐回答(5个)
回答1:

在sql中
空值有NULL 和''的形式
当是NULL的时候用 IS NULL判断
当是''的时候用 =''判断
比如
select * from table where enddate IS NULL;
select * from table where str='';

回答2:

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

回答3:

select (nvl(t.num_1, 0)+t.num_2) from table t

回答4:

用isnull方法判断为空不为空~

回答5: