select * from TblStudent
--查询所有年龄是null的同学信息
--null值无法使用=或<>来进行比较
--unknown
--判断null值必须使用is null或者is not null
select * from TblStudent where tsage is null
select * from TblStudent where tsage=null
--查询所有年龄不是null的同学
select * from TblStudent where tsage<>null
select * from TblStudent where tsage is not null
select * from TblStudent where tsage=25
select * from TblStudent where tsage<>25
--任何值与null进行计算,得到的结果还是null
select 2000+null
原文:http://www.cnblogs.com/hao-1234-1234/p/6185243.html