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

MySQL数据库

开发平台:

Visual C++

  1. --disable_warnings
  2. drop table if exists t1;
  3. --enable_warnings
  4. create table t1(n1 int, n2 int, s char(20), vs varchar(20), t text);
  5. insert into t1 values (1,11, 'one','eleven', 'eleven'),
  6.  (1,11, 'one','eleven', 'eleven'),
  7.  (2,11, 'two','eleven', 'eleven'),
  8.  (2,12, 'two','twevle', 'twelve'),
  9.  (2,13, 'two','thirteen', 'foo'),
  10.  (2,13, 'two','thirteen', 'foo'),
  11.  (2,13, 'two','thirteen', 'bar'),
  12.  (NULL,13, 'two','thirteen', 'bar'),
  13.  (2,NULL, 'two','thirteen', 'bar'),
  14.  (2,13, NULL,'thirteen', 'bar'),
  15.  (2,13, 'two',NULL, 'bar'),
  16.  (2,13, 'two','thirteen', NULL);
  17. select distinct n1 from t1;
  18. select count(distinct n1) from t1;
  19. select distinct n2 from t1;
  20. select count(distinct n2) from t1;
  21. select distinct s from t1;
  22. select count(distinct s) from t1;
  23. select distinct vs from t1;
  24. select count(distinct vs) from t1;
  25. select distinct t from t1;
  26. select count(distinct t) from t1;
  27. select distinct n1,n2 from t1;
  28. select count(distinct n1,n2) from t1;
  29. select distinct n1,s from t1;
  30. select count(distinct n1,s) from t1;
  31. select distinct s,n1,vs from t1;
  32. select count(distinct s,n1,vs) from t1;
  33. select distinct s,t from t1;
  34. select count(distinct s,t) from t1;
  35. select count(distinct n1), count(distinct n2) from t1;
  36. select count(distinct n2), n1 from t1 group by n1;
  37. drop table t1;
  38. # test the conversion from tree to MyISAM
  39. create table t1 (n int default NULL);
  40. let $1=5000;
  41. disable_query_log;
  42. while ($1)
  43. {
  44.  eval insert into t1 values($1);
  45.  dec $1;
  46. }
  47. enable_query_log;
  48. flush status;
  49. select count(distinct n) from t1;
  50. show status like 'Created_tmp_disk_tables';
  51. drop table t1;
  52. #test conversion from heap to MyISAM
  53. create table t1 (s text);
  54. let $1=5000;
  55. disable_query_log;
  56. while ($1)
  57. {
  58.  eval insert into t1 values('$1');
  59.  dec $1;
  60. }
  61. enable_query_log;
  62. flush status;
  63. select count(distinct s) from t1;
  64. show status like 'Created_tmp_disk_tables';
  65. drop table t1;
  66. # End of 4.1 tests