mysql-Client安装

进入官网下载页面下载mysql-msi安装包
image.png

本地附件 mysql-installer-web-community-8.0.16.0.msi.zip (下载后将文件后缀ZIP去掉即可)

安装过程
image.png

勾选 license
image.png

本地只作为客户端连接 Choosing Setup Type 选择 Clinet only
mysql Workbench安装连接及使用 - 图4

后面紧跟下一步 Execute
image.pngimage.png

通过客户端连接
image.png

点击MySQL Connection ➕ 添加连接
image.png


客户端使用界面
image.png

有关更多 mysql Workbench 使用教程请参考官方文档


mysql常用命令

连接
mysql -u <user> -h <ipaddress> -P <port>-p <password>

  • -u参数为用户名
  • -h参数为数据库地址
  • -P大写P参数为端口,mysql默认为3306
  • -p小写p参数为密码,不带参数到命令行回车后则会被要求输入(-p参数为可选参数)
  1. C:\Users\fuyun> mysql -u root -h 127.0.0.1 -p
  2. Enter password:******
  3. #登陆后会出现类似如下提示
  4. Welcome to the MySQL monitor. Commands end with ; or \g.
  5. Your MySQL connection id is 2854760 to server version: 5.0.9
  6. Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
  7. mysql>
  8. #退出
  9. mysql>exit
  10. bye
  11. C:\Users\fuyun>

增删改查

  1. C:\Users\fuyun> mysql -u root -h 127.0.0.1 -p
  2. Enter password:****** # 登录后进入终端
  3. #创建数据库
  4. mysql> create DATABASE FUYUN;
  5. #展示数据库
  6. mysql> show DATABASES;
  7. #选择数据库
  8. mysql> use RUNOOB;
  9. Database changed
  10. #创建数据表
  11. mysql> use FUYUN;
  12. Database changed
  13. mysql> CREATE TABLE fuyun_tbl(
  14. -> fuyun_id INT NOT NULL AUTO_INCREMENT,
  15. -> fuyun_title VARCHAR(100) NOT NULL,
  16. -> fuyun_author VARCHAR(40) NOT NULL,
  17. -> submission_date DATE,
  18. -> PRIMARY KEY ( fuyun_id )
  19. -> )ENGINE=InnoDB DEFAULT CHARSET=utf8;
  20. Query OK, 0 rows affected (0.16 sec)
  21. mysql>
  22. #注意:MySQL命令终止符为分号 ;
  23. #注意: -> 是换行符标识,不要复制
  24. #查询数据表
  25. mysql> select * from fuyun_tbl;
  26. #插入数据
  27. mysql> INSERT INTO fuyun_tab1 ( fuyun_id, fuyun_title,fuyun_author )
  28. VALUES
  29. ( value1, value2,value3 );
  30. #删除数据库
  31. mysql> DROP TABLE fuyun_tbl
  32. Query OK, 0 rows affected (0.1 sec)
  33. #退出
  34. mysql> quit
  35. bye

参考连接

@菜鸟教程
@mysql workbench