随笔分类 -  mysql

mysql随笔
摘要:查看Docker MySQL文档 docker 下载 MySQL文档地址: https://hub.docker.com/_/mysql/ 第一步,拉取MySQL镜像 docker pull mysql # 拉取最新版mysql镜像 之后docker会自动拉取(下载)MySQL镜像。 拉取成功后我们 阅读全文
posted @ 2021-04-17 16:41 青杉 阅读(1221) 评论(0) 推荐(0)
摘要:mysql常用命令 添加表字段 alter table table1 add transactor varchar(10) not Null; alter table table1 add id int unsigned not Null auto_increment primary key 修改某 阅读全文
posted @ 2020-08-05 11:32 青杉 阅读(117) 评论(0) 推荐(0)
摘要:问题1 无法执行删除或修改命令 Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column To disable saf 阅读全文
posted @ 2020-08-05 11:30 青杉 阅读(166) 评论(0) 推荐(0)