且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

MySQL 在 Windows 平台下的安装、使用(图解)

更新时间:2021-07-19 02:04:15


一、 首先电脑要具备.Net Framework 4 以上环境 二、 MySQL下载、安装、执行 1. 下载http://cdn.mysql.com/Downloads/MySQL-5.6/mysql-5.6.13-win32.zip 2. 安装

MySQL 在 Windows 平台下的安装、使用(图解) 点击“install MySQL products” MySQL 在 Windows 平台下的安装、使用(图解) 选中“I accept the licence terms”,点击next

MySQL 在 Windows 平台下的安装、使用(图解) 选中“Skip the check for updates” ,Next

MySQL 在 Windows 平台下的安装、使用(图解) 选中“custom”,Next

MySQL 在 Windows 平台下的安装、使用(图解) Next

MySQL 在 Windows 平台下的安装、使用(图解) Execute

MySQL 在 Windows 平台下的安装、使用(图解) Next

MySQL 在 Windows 平台下的安装、使用(图解) Execute

MySQL 在 Windows 平台下的安装、使用(图解) Next

MySQL 在 Windows 平台下的安装、使用(图解) Next

MySQL 在 Windows 平台下的安装、使用(图解) Next

MySQL 在 Windows 平台下的安装、使用(图解) 设置root密码“root”,Next

MySQL 在 Windows 平台下的安装、使用(图解) Next

MySQL 在 Windows 平台下的安装、使用(图解) Next

MySQL 在 Windows 平台下的安装、使用(图解) Next

MySQL 在 Windows 平台下的安装、使用(图解) Finish 3. 使用 MySQL 在 Windows 平台下的安装、使用(图解) 这个是主页面

MySQL 在 Windows 平台下的安装、使用(图解) Databases->Query Database

MySQL 在 Windows 平台下的安装、使用(图解) 连接本地实例“Local instance MySQL 56”,OK

MySQL 在 Windows 平台下的安装、使用(图解) 填密码,选中保存,OK

MySQL 在 Windows 平台下的安装、使用(图解) 输入查询语句,CREATE DATABASE waylau DEFAULT CHARACTER SET 'utf8'; use waylau; create table users (user_no char(5) not null, user_name char(50) ); 执行

MySQL 在 Windows 平台下的安装、使用(图解) 刷新左侧树形栏,出现刚刚执行的库和表,则说明使用成功!!