1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-20 22:17:09 +08:00

Merge pull request #1792 from haonange1314/patch-1

Update a-thousand-lines-of-mysql-study-notes.md
This commit is contained in:
Guide 2022-08-19 12:45:16 +08:00 committed by GitHub
commit b7f9f90768
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ tag:
-- 创建Windows服务
sc create mysql binPath= mysqld_bin_path(注意:等号与值之间有空格)
/* 连接与断开服务器 */
mysql -u 地址 -P 端口 -u 用户名 -p 密码
mysql -h 地址 -P 端口 -u 用户名 -p 密码
SHOW PROCESSLIST -- 显示哪些线程正在运行
SHOW VARIABLES -- 显示系统变量信息
```