https://dev.mysql.com/downloads/installer/
或者直接下载 --》 https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.18-winx64.zip
1、运行cmd(管理员版本,否则没有权限),如下图
2、对于新版mysql5.7没有了data目录,我们需要运行命令创建
--initialize-insecure --user=mysql
如果不需要mysql里,只需要运行mysqld –remove即可移除,如下图
3、运行net start mysql 启动服务,如下图
如需要配置是否开机启动mysql可以在windows 服务 里面配置。
use mysql;
UPDATE user SET authentication_string=password('123456') where user='root';
FLUSH PRIVILEGES;
如下图:
2、重新登陆,运行命令mysql -uroot -p123456
2、在mysql5.7的根目录下,新建my.ini文件,(5.7后没了这文件,自己新建),如下图:
Mysql服务程序启动时会自动读取my.ini获得各项配置参数,包括编码
在[mysqld]节点下,配置服务端编码,添加2项内容
character_set_server=utf8
[mysql]节点的,这个是配置客户端信息的
我们也添加[mysql]节点,并配置编码UTF8
[mysql]
default-character-set=utf8
合起来如下图:
----建库
create database test2;
---建表
create table student(sno varchar(20),name varchar(20),birt date);
-----查询语句
select * from student;
select name,birt from student;
select name,birt from student
where name='小明';
select name,birt from student
where ='小明'or name='小刚';
-----插入语句
insert into student(sno ,name) values('1','小明');
insert into student values('2','小王','1998-04-02');
insert into student values('3','小点','1998-04-02'),
('3','小是','1998-02-02'),
('3','小的','1998-01-02'),
('3','小号','1998-03-02')
;
select sno,name from student
where namein ('小明','小刚');
select sno,name from student
where name not in ('小明','小刚');
删除前 先查询一下 避免删除错误
查询
select * from student where sno='1';
删除
delete from student where sno='1';
改‘
select * from student where sno='4';
update student set birt='2017/06/05' where sno='4';
update student set birt='2017/06/05' , sno='6' where sno='4';
统计
SELECT c_name,MAX(grade) FROM score GROUP BY c_name;
SELECT name, id FROM student GROUP BY id;
手机扫一扫
移动阅读更方便
你可能感兴趣的文章