count(字段)不会取Null的
select count(*) from test01 7条
select count(0) from test01 7条
select count(a) from test01 7条
select count(b) from test01 6条
count(字段)不会取Null的
select count(*) from test01 7条 select count(0) from test01 7条 select count(a) from test01 7条 select count(b) from test01 6条
|