having.test
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. # test of problems with having (Reported by Mark Rogers)
  2. #
  3. drop table if exists t1; 
  4. create table t1 (a int);
  5. select count(a) as b from t1 where a=0 having b > 0;
  6. insert into t1 values (null);
  7. select count(a) as b from t1 where a=0 having b > 0;
  8. select count(a) as b from t1 where a=0 having b >=0;
  9. drop table t1;