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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Problem with count(distinct)
  3. #
  4. --disable_warnings
  5. drop table if exists t1,t2,t3;
  6. --enable_warnings
  7. create table t1 (libname varchar(21) not null, city text, primary key (libname));
  8. create table t2 (isbn varchar(21) not null, author text, title text, primary key (isbn));
  9. create table t3 (isbn varchar(21) not null, libname varchar(21) not null, quantity int ,primary key (isbn,libname));
  10. insert into t2 values ('001','Daffy','A duck''s life');
  11. insert into t2 values ('002','Bugs','A rabbit's life');
  12. insert into t2 values ('003','Cowboy','Life on the range');
  13. insert into t2 values ('000','Anonymous','Wanna buy this book?');
  14. insert into t2 values ('004','Best Seller','One Heckuva book');
  15. insert into t2 values ('005','EveryoneBuys','This very book');
  16. insert into t2 values ('006','San Fran','It is a san fran lifestyle');
  17. insert into t2 values ('007','BerkAuthor','Cool.Berkley.the.book');
  18. insert into t3 values('000','New York Public Libra','1');
  19. insert into t3 values('001','New York Public Libra','2');
  20. insert into t3 values('002','New York Public Libra','3');
  21. insert into t3 values('003','New York Public Libra','4');
  22. insert into t3 values('004','New York Public Libra','5');
  23. insert into t3 values('005','New York Public Libra','6');
  24. insert into t3 values('006','San Fransisco Public','5');
  25. insert into t3 values('007','Berkeley Public1','3');
  26. insert into t3 values('007','Berkeley Public2','3');
  27. insert into t3 values('001','NYC Lib','8');
  28. insert into t1 values ('New York Public Libra','New York');
  29. insert into t1 values ('San Fransisco Public','San Fran');
  30. insert into t1 values ('Berkeley Public1','Berkeley');
  31. insert into t1 values ('Berkeley Public2','Berkeley');
  32. insert into t1 values ('NYC Lib','New York');
  33. select t2.isbn,city,t1.libname,count(t1.libname) as a from t3 left join t1 on t3.libname=t1.libname left join t2 on t3.isbn=t2.isbn group by city,t1.libname;
  34. select t2.isbn,city,t1.libname,count(distinct t1.libname) as a from t3 left join t1 on t3.libname=t1.libname left join t2 on t3.isbn=t2.isbn group by city having count(distinct t1.libname) > 1;
  35. select t2.isbn,city,t1.libname,count(distinct t1.libname) as a from t3 left join t1 on t3.libname=t1.libname left join t2 on t3.isbn=t2.isbn group by city having count(distinct concat(t1.libname,'a')) > 1;
  36. drop table t1, t2, t3;
  37. #
  38. # Problem with LEFT JOIN
  39. #
  40. create table t1 (f1 int);
  41. insert into t1 values (1);
  42. create table t2 (f1 int,f2 int);
  43. select t1.f1,count(distinct t2.f2),count(distinct 1,NULL) from t1 left join t2 on t1.f1=t2.f1 group by t1.f1;
  44. drop table t1,t2;
  45. #
  46. # Empty tables
  47. #
  48. create table t1 (f int);
  49. select count(distinct f) from t1;
  50. drop table t1;
  51. # End of 4.1 tests