lowercase_table3.result
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:0k
源码类别:
MySQL数据库
开发平台:
Visual C++
- DROP TABLE IF EXISTS t1,T1;
- CREATE TABLE t1 (a int);
- SELECT * from T1;
- a
- drop table t1;
- flush tables;
- CREATE TABLE t1 (a int) ENGINE=INNODB;
- SELECT * from T1;
- ERROR HY000: Can't open file: 'T1.ibd' (errno: 1)
- drop table t1;