null_key.test
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Check null keys
  3. drop table if exists t1;
  4. create table t1 (a int, b int not null,unique key (a,b),index(b)) type=myisam;
  5. insert ignore into t1 values (1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(null,7),(9,9),(8,8),(7,7),(null,9),(null,9),(6,6);
  6. explain select * from t1 where a is null;
  7. explain select * from t1 where a is null and b = 2;
  8. explain select * from t1 where a is null and b = 7;
  9. explain select * from t1 where a=2 and b = 2;
  10. explain select * from t1 where a<=>b limit 2;
  11. explain select * from t1 where (a is null or a > 0 and a < 3) and b < 5 limit 3;
  12. explain select * from t1 where (a is null or a = 7) and b=7;
  13. explain select * from t1 where (a is null and b>a) or a is null and b=7 limit 2;
  14. explain select * from t1 where a is null and b=9 or a is null and b=7 limit 3;
  15. explain select * from t1 where a > 1 and a < 3 limit 1;
  16. explain select * from t1 where a > 8 and a < 9;
  17. select * from t1 where a is null;
  18. select * from t1 where a is null and b = 7;
  19. select * from t1 where a<=>b limit 2;
  20. select * from t1 where (a is null or a > 0 and a < 3) and b < 5 limit 3;
  21. select * from t1 where (a is null or a > 0 and a < 3) and b > 7 limit 3;
  22. select * from t1 where (a is null or a = 7) and b=7;
  23. select * from t1 where a is null and b=9 or a is null and b=7 limit 3;
  24. alter table t1 modify b blob not null, add c int not null, drop key a, add unique key (a,b(20),c), drop key b, add key (b(10));
  25. explain select * from t1 where a is null and b = 2;
  26. explain select * from t1 where a is null and b = 2 and c=0;
  27. explain select * from t1 where a is null and b = 7 and c=0;
  28. explain select * from t1 where a=2 and b = 2;
  29. explain select * from t1 where a<=>b limit 2;
  30. explain select * from t1 where (a is null or a > 0 and a < 3) and b < 5 and c=0 limit 3;
  31. explain select * from t1 where (a is null or a = 7) and b=7 and c=0;
  32. explain select * from t1 where (a is null and b>a) or a is null and b=7 limit 2;
  33. explain select * from t1 where a is null and b=9 or a is null and b=7 limit 3;
  34. explain select * from t1 where a > 1 and a < 3 limit 1;
  35. explain select * from t1 where a is null and b=7 or a > 1 and a < 3 limit 1;
  36. explain select * from t1 where a > 8 and a < 9;
  37. explain select * from t1 where b like "6%";
  38. select * from t1 where a is null;
  39. select * from t1 where a is null and b = 7 and c=0;
  40. select * from t1 where a<=>b limit 2;
  41. select * from t1 where (a is null or a > 0 and a < 3) and b < 5 limit 3;
  42. select * from t1 where (a is null or a > 0 and a < 3) and b > 7 limit 3;
  43. select * from t1 where (a is null or a = 7) and b=7 and c=0;
  44. select * from t1 where a is null and b=9 or a is null and b=7 limit 3;
  45. select * from t1 where b like "6%";
  46. drop table t1;