Select * From 课程总表 where column3 is null or column4 is null 这样应该满足要求了,不过前提是column3和column4都是 null 值
select * from 课程总表 where isnull(column3) or isnull(column4)