select * from 表名 where id='01' and (name is not null and sex is not null and age is not null and addr is not null);
1、如果是空字符串就 字段名= ''
2、如果是不等于空字符 字段名 <>''
3、如果是 null值 就是 字段名 is null 或者 not null
扩展资料
数据记录筛选:
sql="select * from 数据表 where字段名=字段值 order by字段名[desc]"(按某个字段值降序排列。默认升序ASC)
sql="select * from 数据表 where字段名like '%字段值%' order by 字段名 [desc]"
sql="select top 10 * from 数据表 where字段名=字段值 order by 字段名 [desc]"
sql="select top 10 * from 数据表 order by 字段名 [desc]"
sql="select * from 数据表 where字段名in ('值1','值2','值3')"
sql="select * from 数据表 where字段名between 值1 and 值2"
参考资料来源:百度百科:SQL语句大全
在access语句中,ISNULL(expr)判定是否为NULL。在SQL语句中,判断某个字段不等于空,应该使用 column IS NOT NULL 或者 NOT(column IS NULL);
不能用 ISNULL()函数,在SQL语句中,ISNULL(expr,value)意思是 若expr的值非空,则返回expr的值,否则返回value的值。
是指没有任何值。如果数据库对该字段要求NOTNULL,则表示不能为空值,一定需要有值才可以添加新记录。
数据库中的空值是指没有任何值,一般用NULL表示,但并非是字符串的NULL。空(NULL)值表示数值未知,空值不同于空白或零值。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)