diff --git a/docs/database/mysql/a-thousand-lines-of-mysql-study-notes.md b/docs/database/mysql/a-thousand-lines-of-mysql-study-notes.md index 53350ec5..e90efe03 100644 --- a/docs/database/mysql/a-thousand-lines-of-mysql-study-notes.md +++ b/docs/database/mysql/a-thousand-lines-of-mysql-study-notes.md @@ -19,7 +19,7 @@ tag: -- 创建Windows服务 sc create mysql binPath= mysqld_bin_path(注意:等号与值之间有空格) /* 连接与断开服务器 */ -mysql -h 地址 -P 端口 -u 用户名 -p 密码 +mysql -u 地址 -P 端口 -u 用户名 -p 密码 SHOW PROCESSLIST -- 显示哪些线程正在运行 SHOW VARIABLES -- 显示系统变量信息 ``` diff --git a/docs/system-design/basis/naming.md b/docs/system-design/basis/naming.md index 8cbf954a..e8661829 100644 --- a/docs/system-design/basis/naming.md +++ b/docs/system-design/basis/naming.md @@ -233,7 +233,7 @@ Codelf 提供了在线网站版本,网址:[https://unbug.github.io/codelf/]( 1. 《阿里巴巴 Java 开发手册》 2. 《Clean Code》 -3. Google Java 代码指南:https://google.github.io/styleguide/javaguide.html#s5.1-identifier-name +3. Google Java 代码指南:https://google.github.io/styleguide/javaguide.html 4. 告别编码5分钟,命名2小时!史上最全的Java命名规范参考:https://www.cnblogs.com/liqiangchn/p/12000361.html ## 总结