having.test
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:4k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. # test of problems with having (Reported by Mark Rogers)
  2. #
  3. --disable_warnings
  4. drop table if exists t1,t2;
  5. --enable_warnings
  6. create table t1 (a int);
  7. select count(a) as b from t1 where a=0 having b > 0;
  8. insert into t1 values (null);
  9. select count(a) as b from t1 where a=0 having b > 0;
  10. select count(a) as b from t1 where a=0 having b >=0;
  11. explain extended select count(a) as b from t1 where a=0 having b >=0;
  12. drop table t1; 
  13. #
  14. # Test of problem with HAVING and AVG()
  15. #
  16. CREATE TABLE t1 (
  17.   raw_id int(10) NOT NULL default '0',
  18.   chr_start int(10) NOT NULL default '0',
  19.   chr_end int(10) NOT NULL default '0',
  20.   raw_start int(10) NOT NULL default '0',
  21.   raw_end int(10) NOT NULL default '0',
  22.   raw_ori int(2) NOT NULL default '0'
  23. );
  24. INSERT INTO t1 VALUES (469713,1,164123,1,164123,1),(317330,164124,317193,101,153170,1),(469434,317194,375620,101,58527,1),(591816,375621,484273,1,108653,1),(591807,484274,534671,91,50488,1),(318885,534672,649362,101,114791,1),(318728,649363,775520,102,126259,1),(336829,775521,813997,101,38577,1),(317740,813998,953227,101,139330,1),(1,813998,953227,101,139330,1);
  25. CREATE TABLE t2 (
  26.   id int(10) unsigned NOT NULL default '0',
  27.   contig_id int(10) unsigned NOT NULL default '0',
  28.   seq_start int(10) NOT NULL default '0',
  29.   seq_end int(10) NOT NULL default '0',
  30.   strand tinyint(2) NOT NULL default '0',
  31.   KEY id (id)
  32. );
  33. INSERT INTO t2 VALUES (133195,469713,61327,61384,1),(133196,469713,64113,64387,1),(133197,1,1,1,0),(133197,1,1,1,-2);
  34. SELECT e.id,
  35.    MIN( IF(sgp.raw_ori=1,
  36.           (e.seq_start+sgp.chr_start-sgp.raw_start),  
  37.           (sgp.chr_start+sgp.raw_end-e.seq_end))) as start, 
  38.    MAX( IF(sgp.raw_ori=1,
  39.            (e.seq_end+sgp.chr_start-sgp.raw_start),  
  40.            (sgp.chr_start+sgp.raw_end-e.seq_start))) as end, 
  41.    AVG(IF (sgp.raw_ori=1,e.strand,(-e.strand))) as chr_strand 
  42. FROM  t1 sgp,
  43.       t2 e  
  44. WHERE sgp.raw_id=e.contig_id 
  45. GROUP BY e.id 
  46. HAVING chr_strand= -1 and end >= 0 
  47.   AND start <= 999660;
  48. drop table t1,t2;
  49. #
  50. # Test problem with having and MAX() IS NOT NULL
  51. #
  52. CREATE TABLE t1 (Fld1 int(11) default NULL,Fld2 int(11) default NULL);
  53. INSERT INTO t1 VALUES (1,10),(1,20),(2,NULL),(2,NULL),(3,50);
  54. select Fld1, max(Fld2) as q from t1 group by Fld1 having q is not null;
  55. select Fld1, max(Fld2) from t1 group by Fld1 having max(Fld2) is not null;
  56. select Fld1, max(Fld2) from t1 group by Fld1 having avg(Fld2) is not null;
  57. select Fld1, max(Fld2) from t1 group by Fld1 having std(Fld2) is not null;
  58. select Fld1, max(Fld2) from t1 group by Fld1 having variance(Fld2) is not null;
  59. drop table t1;
  60. #
  61. # Test problem with count(distinct) in having
  62. #
  63. create table t1 (id int not null, qty int not null);
  64. insert into t1 values (1,2),(1,3),(2,4),(2,5);
  65. select id, sum(qty) as sqty from t1 group by id having sqty>2;
  66. select sum(qty) as sqty from t1 group by id having count(id) > 0;
  67. select sum(qty) as sqty from t1 group by id having count(distinct id) > 0;
  68. drop table t1;
  69. #
  70. # Test case for Bug #4358 Problem with HAVING clause that uses alias from the
  71. #              select list and TEXT field 
  72. #
  73. CREATE TABLE t1 (
  74.   `id` bigint(20) NOT NULL default '0',
  75.   `description` text
  76. ) ENGINE=MyISAM;
  77. CREATE TABLE t2 (
  78.   `id` bigint(20) NOT NULL default '0',
  79.   `description` varchar(20)
  80. ) ENGINE=MyISAM;
  81. INSERT INTO t1  VALUES (1, 'test');
  82. INSERT INTO t2 VALUES (1, 'test');
  83. CREATE TABLE t3 (
  84.   `id`       bigint(20) NOT NULL default '0',
  85.   `order_id` bigint(20) NOT NULL default '0'
  86. ) ENGINE=MyISAM;
  87. select
  88. a.id, a.description,
  89. count(b.id) as c 
  90. from t1 a left join t3 b on a.id=b.order_id 
  91. group by a.id, a.description 
  92. having (a.description is not null) and (c=0);
  93. select
  94. a.*, 
  95. count(b.id) as c 
  96. from t2 a left join t3 b on a.id=b.order_id 
  97. group by a.id, a.description
  98. having (a.description is not null) and (c=0);
  99. INSERT INTO t1  VALUES (2, 'test2');
  100. select
  101. a.id, a.description,
  102. count(b.id) as c 
  103. from t1 a left join t3 b on a.id=b.order_id 
  104. group by a.id, a.description 
  105. having (a.description is not null) and (c=0);
  106. drop table t1,t2,t3;
  107. # End of 4.1 tests