1.点击进入下载地址
Choosing the right file:
If you have an online connection while running the MySQL Installer, choose themysql-installer-web-communityfile.
If you do NOT have an online connection while running the MySQL Installer, choose themysql-installer-communityfile.
Note: MySQL Installer is 32 bit, but will install both 32 bit and 64 bit binaries.
选择对应安装方式.在点击No Thanks,just start my download即可下载
2.安装
注意:mysql,只支持在以上的版本中运行
安装过程 略..
3.简单的使用和验证
打开命令窗口 (MySQL 5.6 Command Line Client - Unicode)
Enter password:
输入安装时候设置的密码,并按回车键进入
显示mysql> 表示已经进入
创建一个数据库:
mysql> create database bd_demo;
删除已创建的数据库:
mysql> drop database bd_demo;
查看创建的数据库:
mysql> show databases;
注:sql的语句后面加分号";"
4.mysql使用手册
5.一些注意事项
a)输入密码后闪退,应检查服务器是否启动,可打开任务管理器查看进程.
b)每一条sql命令语句结尾以分号";"结束.如果没输入分号,会报语法错误
c).....(善用搜索工具)
网友评论