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

MySQL数据库

开发平台:

Visual C++

  1. drop table if exists t1;
  2. create table t1(n int not null, key(n)) delay_key_write = 1;
  3. select count(distinct n) from t1;
  4. count(distinct n)
  5. 100
  6. explain extended select count(distinct n) from t1;
  7. id select_type table type possible_keys key key_len ref rows Extra
  8. 1 SIMPLE t1 index NULL n 4 NULL 200 Using index
  9. Warnings:
  10. Note 1003 select count(distinct test.t1.n) AS `count(distinct n)` from test.t1
  11. drop table t1;