null 不统计的吗?
select * from t1where yyb='325604'
andzt is null
----------------------- test@online ----------- Press CTRL-W for Help --------
yyb 325604
zt
查询到 1 行.
select * from t1
where yyb='325604'
andzt !='2'
----------------------- test@online ----------- Press CTRL-W for Help --------
找不到行.
明明为空,zt 不等于 2 应该有结果啊. zt 为char型. 确实是啊同意楼主,顶下等解释 本帖最后由 liaosnet 于 2010-03-30 00:00 编辑
NULL 实际上是用于测试用的.属于BOOLEAN
在你的语句中, zt !='2' 隐含的意思是 zt is not null and != '2' ..因为 != 比较中就含有is not null的含义,null是不可以用于比较的..即 == NULL 是错误的,同样的 != NULL 也是错误的..
BTW: null 并不是 "" 或者 0. 本帖最后由 sqlnet 于 2010-03-30 01:00 编辑
NULL 实际上是用于测试用的.属于BOOLEAN
在你的语句中, zt !='2' 隐含的意思是 zt is not null and != ' ...
liaosnet 发表于 2010-03-29 23:56 http://bbs2.chinaunix.net/images/common/back.gif
select * from t1;
----------------------- sysadmin@test ---------- Press CTRL-W for Help --------
id zt
101
2011
select count(*) from t1;
select count(*)from t1 where zt!='2';
select count(*)from t1 where id=101 and zt!='2'
----------------------- sysadmin@test ---------- Press CTRL-W for Help --------
(count(*))
2
(count(*))
2
(count(*))
1
如果zt 隐含了 is not null ,那么 select count(*)from t1 where id=101 and zt!='2' 就不应该有结果。 select * from t1;
----------------------- sysadmin@test ---------- Press CTRL-W for Help...
sqlnet 发表于 2010-03-30 00:59 http://bbs2.chinaunix.net/images/common/back.gif
> create table t1 (id char(10), zt char(10));
Table created.
> insert into t1(id) values("101");
1 row(s) inserted.
> insert into t1 values("201","1");
1 row(s) inserted.
> select * from t1;
id zt
101
201 1
2 row(s) retrieved.
> select count(*) from t1;
(count(*))
2
1 row(s) retrieved.
> select count(*)from t1 where zt!='2';
(count(*))
1
1 row(s) retrieved.
> select count(*)from t1 where id=101 and zt!='2'
> ;
(count(*))
0
1 row(s) retrieved.
再次提醒你:NULL 不是""(空字串),也不是0 再次提醒你:NULL 不是""(空字串),也不是0
liaosnet 发表于 2010-03-30 09:56 http://bbs2.chinaunix.net/images/common/back.gif
我上面的语句和你运行出来不一样啊,
select count(*)from t1 where zt!='2';
----------------------- sysadmin@test ---------- Press CTRL-W for Help --------
(count(*))
2
select count(*)from t1 where id=101 and zt!='2'
----------------------- sysadmin@test ---------- Press CTRL-W for Help --------
(count(*))
1 回复 6# sqlnet
你把那个101那条记录删除再试.. insert into t1(id) values("101"); 再试.
再一次提醒: 空字符串"" 并不等于NULL. 谢谢 liaosnet
页:
[1]