4.5�空值

4.5.1 空值的测试

��在where子句中,使用is null和is not null来判断属性的值是否为空。例如:
select loan-number, amount
from loan
where amount is not null
��