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

MySQL数据库

开发平台:

Visual C++

  1. DROP TABLE IF EXISTS t1,T1;
  2. CREATE TABLE t1 (a int);
  3. SELECT * from T1;
  4. a
  5. drop table t1;
  6. flush tables;
  7. CREATE TABLE t1 (a int) ENGINE=INNODB;
  8. SELECT * from T1;
  9. ERROR HY000: Can't open file: 'T1.ibd' (errno: 1)
  10. drop table t1;