mysql重装了,但是保存了之前的data文件夹,能把之前的数据库恢复吗
可以通过将之前保存的data文件夹移动到新安装的MySQL的datadir目录下来恢复之前的数据库。
create table 表名(
字段1 字段类型 [约束条件],
字段2 字段类型 [约束条件],
);
create table user(
id int not null primary key auto_increment,
name varchar(20) not null,
age int not null
);