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

MySQL数据库

开发平台:

Visual C++

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