⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 key_diff.test

📁 这是linux下运行的mysql软件包,可用于linux 下安装 php + mysql + apach 的网络配置
💻 TEST
字号:
## Check on condition on different length keys.--disable_warningsdrop table if exists t1;--enable_warningsCREATE TABLE t1 (  a char(5) NOT NULL,  b char(4) NOT NULL,  KEY (a),  KEY (b));INSERT INTO t1 VALUES ('A','B'),('b','A'),('C','c'),('D','E'),('a','a');select * from t1,t1 as t2;explain select t1.*,t2.* from t1,t1 as t2 where t1.A=t2.B;#select t1.*,t2.* from t1,t1 as t2 where t1.A=t2.B;select t1.*,t2.* from t1,t1 as t2 where t1.A=t2.B order by binary t1.a,t2.a;select * from t1 where a='a';drop table t1;# End of 4.1 tests

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -