select * from Students where Address IS null --判断address是nulselect * from Students where Address is not null --判断address不为nullselect name,ISNULL([address],'地球')from Students--如果有出现null就让其显示地球(要注意其数据类型)