CREATE TABLE user ( id int NOT NULL AUTO_INCREMENT COMMENT '主键', name char(10) NOT NULL DEFAULT '' COMMENT '名字', PRIMARY KEY (id)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;出于习惯,我们一般会加一列 id 作为主键,而这个主键一般边上都有个 AUTO_INCREMENT, 意思是这个主键是自增的。自增就是 i++,也就...
一. mysql 修改密码1.mysql -u root -p root 输入原密码登录命令行2.use mysql;3.update user set password=password ('root123') where 'user' = 'root'; 5.7 版本 update user set authentication_string=password ('root123') where 'user' = 'root';4.flush privileges; 提交应用.5.You must reset your password us...