在程序中动态插入数据库时,突然重启导致数据库表格无法操作,无法删除,无法重新创建该表格。
DROP TABLE test1_copy1;报错提示:1051 - Unknown table 'test1_copy1'
SELECT * FROM test1_copy1;报错提示:1146 - Table 'RF.test1_copy1' doesn't exist
重新创建表格 报错提示:1005 -Can't create table 'RF.test1 copy1'(errno: -1)
Linux ARM Mysql
drop table xxx;
DROP TABLE test1_copy1;
SELECT * FROM test1_copy1;
创建表格