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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Check on condition on different length keys.
  3. --disable_warnings
  4. drop table if exists t1;
  5. --enable_warnings
  6. CREATE TABLE t1 (
  7.   a char(5) NOT NULL,
  8.   b char(4) NOT NULL,
  9.   KEY (a),
  10.   KEY (b)
  11. );
  12. INSERT INTO t1 VALUES ('A','B'),('b','A'),('C','c'),('D','E'),('a','a');
  13. select * from t1,t1 as t2;
  14. explain select t1.*,t2.* from t1,t1 as t2 where t1.A=t2.B;
  15. #select t1.*,t2.* from t1,t1 as t2 where t1.A=t2.B;
  16. select t1.*,t2.* from t1,t1 as t2 where t1.A=t2.B order by binary t1.a,t2.a;
  17. select * from t1 where a='a';
  18. drop table t1;
  19. # End of 4.1 tests