MySQL的Windows系统安装

一、MySQL的Windows系统安装

1、下载MySQL安装包

        打开如下链接地址,下载安装包

2、安装并配置

双击下载好的安装包进行安装,出现如下界面:
选择【 Full 】选项,然后单击【 Next 】按钮。
出现如下界面,单击【 Execute 】按钮
下一步执行完成后,会出现以下界面,单击【 Next 】按钮。
执行后,会跳转到如下界面:然后单击【 Next 】按钮进行下一步
跳转到如下界面,单击【 Next 】按钮进行下一步。
跳转到如下界面,输入数据库密码,然后单击【 Next 】按钮进行下一步
跳转到以下界面,单击【 Next 】进行下一步。
跳转到如下界面,单击【 Next 】按钮进行下一步
跳转到以下界面,单击【 Execute 】执行安装。
安装完成后,跳转到如下界面:单击【 Finish 】按钮完成安装。
跳转到如下界面,接下来进行软件相关配置,单击【 Next 】按钮进行下一步
跳转到如下界面,直接单击【 Finish 】按钮。
跳转到如下界面,单击【 Finish 】按钮进行下一步。
跳转到如下界面,在【 Password 】窗口输入前面填写的密码,然后单击【 Check 】按钮,当出现绿色对勾提示的时候,说明密码测试没有问题。单击【Next 】按钮进行下一步。
跳转到如下界面,单击【 Execute 】按钮进行下一步。
执行完成之后如下图所示:单击【 Finish 】按钮 i 进行下一步
跳转到如下界面,单击【 Next 】按钮进行下一步。
跳转到如下界面,取消两个复选框的勾选。然后单击【 Finish 】按钮进行下一步

3、后续的配置

3.1、配置客户端字符配置文件

找到 C:\Program Files\MySQL\MySQL Workbench 8.0\workbench 目录下的 os_utils.py 文件,使用
notepad++ 软件打开进行编辑。
找到  356 行,将字符集 utf-8 修改为 gbk 即可。

二、创建一个英雄表(hero)
主键、name、nickname、address、groups、email、telphone

1、登录数据库

[root@localhost ~]# mysql -uroot -pAdmin123!
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.18 MySQL Community Server (GPL)

Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql8.0 [(none)]>

2、创建数据库并使用

mysql8.0 [(none)]>create database db_test;
Query OK, 1 row affected (0.00 sec)

mysql8.0 [(none)]>use db_test;
Database changed
mysql8.0 [db_test]>

3、创建表hero

mysql8.0 [db_test]>create table hero( id int auto_increment primary key, name varchar(255) not null, nickname varchar(255), address varrchar(255), group_ varchar(255), email varchar(255), telephone int );
Query OK, 0 rows affected (0.01 sec)

4、向表中添加数据

mysql8.0 [db_test]>insert into hero (name,nickname,address,group_,email,telephone)
    -> values
    -> ('孙悟空','齐天大圣','花果山','西天取经','232131@qq.com',1234322342),
    -> ('唐玄奘','唐僧','长安','西天取经','12321312@qq.com',2132132112),
    -> ('曹孟德','曹操','许昌','魏国','1231221@qq.com',2132131212), 
    -> ('诸葛亮','孔明先生','襄樊','蜀国','3213213@qq.com',1231231233);
Query OK, 4 rows affected (0.00 sec)
Records: 4  Duplicates: 0  Warnings: 0

5、查看表结构

mysql8.0 [db_test]>desc hero;
+-----------+--------------+------+-----+---------+----------------+
| Field     | Type         | Null | Key | Default | Extra          |
+-----------+--------------+------+-----+---------+----------------+
| id        | int(11)      | NO   | PRI | NULL    | auto_increment |
| name      | varchar(255) | NO   |     | NULL    |                |
| nickname  | varchar(255) | YES  |     | NULL    |                |
| address   | varchar(255) | YES  |     | NULL    |                |
| group_    | varchar(255) | YES  |     | NULL    |                |
| email     | varchar(255) | YES  |     | NULL    |                |
| telephone | int(11)      | YES  |     | NULL    |                |
+-----------+--------------+------+-----+---------+----------------+
7 rows in set (0.00 sec)

mysql8.0 [db_test]>

6、查看表的数据

mysql8.0 [db_test]>select * from hero;
+----+-----------+--------------+-----------+--------------+-----------------+------------+
| id | name      | nickname     | address   | group_       | email           | telephone  |
+----+-----------+--------------+-----------+--------------+-----------------+------------+
|  1 | 孙悟空    | 齐天大圣     | 花果山    | 西天取经     | 232131@qq.com   | 1234322342 |
|  2 | 唐玄奘    | 唐僧         | 长安      | 西天取经     | 12321312@qq.com |  213213212 |
|  3 | 曹孟德    | 曹操         | 许昌      | 魏国         | 1231221@qq.com  | 2132131212 |
|  4 | 诸葛亮    | 孔明先生     | 襄樊      | 蜀国         | 3213213@qq.com  |  123123123 |
+----+-----------+--------------+-----------+--------------+-----------------+------------+
4 rows in set (0.00 sec)

mysql8.0 [db_test]>

  • 9
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值