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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Test of different EXPLAIN's
  3. --disable_warnings
  4. drop table if exists t1;
  5. --enable_warnings
  6. create table t1 (id int not null, str char(10), unique(str));
  7. explain select * from t1;
  8. insert into t1 values (1, null),(2, null),(3, "foo"),(4, "bar");
  9. select * from t1 where str is null;
  10. select * from t1 where str="foo";
  11. explain select * from t1 where str is null;
  12. explain select * from t1 where str="foo";
  13. explain select * from t1 ignore key (str) where str="foo";
  14. explain select * from t1 use key (str,str) where str="foo";
  15. #The following should give errors
  16. --error 1072
  17. explain select * from t1 use key (str,str,foo) where str="foo";
  18. --error 1072
  19. explain select * from t1 ignore key (str,str,foo) where str="foo";
  20. drop table t1;
  21. explain select 1;
  22. create table t1 (a int not null);
  23. explain select count(*) from t1;
  24. insert into t1 values(1);
  25. explain select count(*) from t1;
  26. insert into t1 values(1);
  27. explain select count(*) from t1;
  28. drop table t1;
  29. #
  30. # Bug #3403 Wrong encoding in EXPLAIN SELECT output
  31. #
  32. set names koi8r;
  33. create table 粤