MyISAM表的.frm文件丢失后的恢复方法:
1、创建实验用的MyISAM表t1,并插入数据:
mysql> create table t1(id int) engine=myisam;
Query OK, 0 rows affected (0.01 sec)
mysql> insert into t1 values(1),(2),(3),(4),(5),(6),(7),(8);
Query OK, 8 ro ...
↧