欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Mysql学习(一)

程序员文章站 2022-09-15 19:38:05
1. MySQL安装下载安装。 1)到mysql官网下载。网站:https://www.mysql.com/下载。//windows系统下载安装地址:https://dev.mysql.com/downloads/windows/installer/ 2)安装mysql软件,一步一步安装即可。 3) ......

1. mysql安装下载安装。

            1)到mysql官网下载。网站:下载。//windows系统下载安装地址:

Mysql学习(一)

 

            2)安装mysql软件,一步一步安装即可。

            3)使用

            4)验证是否成功

                打开cmd ->切换到mysql安装目录->输入 mysql -u root -p 回车 -> 输入密码 回车。出现如下英文标识安装成功。

                d:\program files (x86)\mysql\bin>mysql -u root -p

enter password: ****//密码为安装过程中要求输入的密码。

welcome to the mysql monitor. commands end with ; or \g.

your mysql connection id is 2

server version: 5.5.40 mysql community server (gpl)

 

copyright (c) 2000, 2014, 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.

 

mysql>

2 数据库操作管理

2.1 查询所有数据库

mysql> show databases;

+--------------------+

| database |

+--------------------+

| information_schema | -- mysql元数据,基础数据

| mysql | --mysql配置数据库,其中包含用户信息。(用户名和密码,权限管理)

| performance_schema | --mysql数据库软件的运行数据,日志信息,性能数据

| test | --测试数据库。空的

+--------------------+

4 rows in set (0.00 sec)

2.2 创建数据库

mysql> create database ttest -- 指定默认字符集创建数据库

-> default character set utf8

-> ;

query ok, 1 row affected (0.00 sec)

2.3 查看数据库的默认字符集   

mysql> show create database ttest ;

+----------+----------------------------------------------------------------+

| database | create database |

+----------+----------------------------------------------------------------+

| day15 | create database `day15` /*!40100 default character set utf8 */ |

+----------+----------------------------------------------------------------+

1 row in set (0.00 sec)

2.4 删除数据库

mysql> drop database ttest ;

query ok, 0 rows affected (0.01 sec)

2.5 修改数据库

mysql> alter database ttest default character set gbk;

query ok, 1 row affected (0.00 sec)

3 表管理

先要选择数据库,如上数据库管理。

--指定数据库使用
use ttest ;

3.1 查看所有表

mysql> show tables;

+-----------------+

| tables_in_ttest  |

+-----------------+

| student |

+-----------------+

1 row in set (0.00 sec)

3.2 创建表

mysql> create table student(

-> sid int,

-> sname varchar(20),

-> sage int

-> );

query ok, 0 rows affected (0.01 sec)

3.3 查看表结构

 mysql> desc student;

+-------+-------------+------+-----+---------+-------+

| field | type | null | key | default | extra |

+-------+-------------+------+-----+---------+-------+

| sid | int(11) | yes | | null | |

| sname | varchar(20) | yes | | null | |

| sage | int(11) | yes | | null | |

+-------+-------------+------+-----+---------+-------+

3 rows in set (0.01 sec)

3.4 删除表    

mysql> drop table student;

query ok, 0 rows affected (0.01 sec)

3.5 修改表

1)添加字段

mysql> alter table student add column sgender varchar(2);

query ok, 0 rows affected (0.03 sec)

records: 0 duplicates: 0 warnings: 0

2)删除字段

mysql> alter table student drop column sgender;

query ok, 0 rows affected (0.03 sec)

records: 0 duplicates: 0 warnings: 0

3)修改字段类型

mysql> alter table student modify column remark varchar(100);

query ok, 0 rows affected (0.07 sec)

records: 0 duplicates: 0 warnings: 0

4)修改字段名称

mysql> alter table student change column sgender gender varchar(2);

query ok, 0 rows affected (0.03 sec)

records: 0 duplicates: 0 warnings: 0

5)修改表名称

mysql> alter table student rename to teacher;

query ok, 0 rows affected (0.01 sec)

4 增删改数据

-- ********一、增删改数据********* ---

-- 1.1 增加数据

-- 插入所有字段。一定依次按顺序插入

insert into student values(1,'张三','男',20);

-- 注意不能少或多字段值

-- insert into student values(2,'李四','女');

-- 插入部分字段

insert into student(id,name) values(2,'李四');

 

-- 1.2 修改数据

-- 修改所有数据(建议少用)

update student set gender='女';

-- 带条件的修改(推荐使用)

update student set gender='男' where id=1; -- 修改id为1的学生,修改性别为男

-- 修改多个字段,注意: set 字段名=值,字段名=值,....

update student set gender='男',age=30 where id=2;

 

-- 1.3 删除数据

-- 删除所有数据(建议少用)

delete from student;

-- 带条件的删除(推荐使用)

delete from student where id=2;

-- 另一种方式

-- delete from: 可以全表删除 1)可以带条件删除 2)只能删除表的数据,不能删除表的约束 3)使用delete from删除的数据可以回滚(事务)

-- truncate table: 可以全表删除 1)不能带条件删除 2)即可以删除表的数据,也可以删除表的约束 3)使用truncate table删除的数据不能回滚

truncate table student;

5 查询数据

5.1 查询所有列

-- 2.1 查询所有列

select * from student;

5.2 查询指定列

-- 2.2 查询指定列

select id,name,gender from student;

5.3 查询时添加常量列

-- 2.4 查询时添加常量列

-- 需求: 在查询student表时添加一个班级列,内容为"java就业班"

select id,name,gender,age,'java就业班' as '年级' from student;

5.4 查询时合并列

-- 2.5 查询时合并列

-- 需求: 查询每个学生的servlet和jsp的总成绩

select id,name,(servlet+jsp) as '总成绩' from student;

-- 注意:合并列只能合并数值类型的字段

select id,(name+servlet) from student;

5.5 查询时去除重复记录

-- 2.6 查询时去除重复记录(distinct)

-- 需求: 查询学生的性别 男 女

select distinct gender from student;

-- 另一种语法

select distinct(gender) from student;

-- 需求: 查询学生所在的地区

select distinct address from student;

5.6 条件查询

-- 2.7 条件查询(where)

-- 2.7.1 逻辑条件: and(与) or(或)

-- 需求: 查询id为2,且姓名为李四的学生

select * from student where id=2 and name='李四'; -- 交集

 

-- 需求: 查询id为2,或姓名为张三的学生

select * from student where id=2 or name='张三'; -- 并集

 

-- 2.7.2 比较条件: > < >= <= = <>(不等于) between and (等价于>= 且 <=)

-- 需求: 查询servlet成绩大于70分的学生

select * from student where servlet>70;

 

-- 需求: 查询jsp成绩大于等于75,且小于等于90分的学生

select * from student where jsp>=75 and jsp<=90;

-- 另一个语法

select * from student where jsp between 75 and 90; -- (包前包后)

 

select * from student where gender<>'男';

 

 

-- 2.7.3 判空条件(null 空字符串): is null / is not null / ='' / <>''

-- 需求: 查询地址为空的学生(包括null和空字符串)

-- null vs 空字符串

-- null:表示没有值

-- 空字符串:有值的!

-- 判断null

select * from student where address is null ;

-- 判断空字符串

select * from student where address='';

 

select * from student where address is null or address=''; -- (包括null和空字符串)

 

-- 需求: 查询有地址的学生(不包括null和空字符串)

select * from student where address is not null and address<>'';

 

-- 2.7.4 模糊条件: like

-- 通常使用以下替换标记:

-- % : 表示任意个字符

-- _ : 表示一个字符

-- 需求: 查询姓'张'的学生

select * from student where name like '李%';

 

-- 需求: 查询姓'李',且姓名只有两个字的学生

select * from student where name like '李_';

5.7 聚合查询

-- 2.8 聚合查询(使用聚合函数的查询)

-- 常用的聚合函数: sum() avg() max() min() count()

-- 需求:查询学生的servlet的总成绩 (sum() :求和函数)

select sum(servlet) as 'servlet的总成绩' from student;

 

-- 需求: 查询学生的servlet的平均分

select avg(servlet) as 'servlet的平均分' from student;

 

-- 需求: 查询当前servlet最高分

select max(servlet) as '最高分' from student;

 

-- 需求: 查询最低分

select min(servlet) as '最低分' from student;

 

-- 需求: 统计当前有多少学生(count(字段))

select count(*) from student;

 

select count(id) from student;

 

-- 注意:count()函数统计的数量不包含null的数据

-- 使用count统计表的记录数,要使用不包含null值的字段

select count(age) from student;

5.8 分页查询

-- 2.9 分页查询(limit 起始行,查询几行)

-- 起始行从0开始

-- 分页:当前页 每页显示多少条

-- 分页查询当前页的数据的sql: select * from student limit (当前页-1)*每页显示多少条,每页显示多少条;

 

-- 需求: 查询第1,2条记录(第1页的数据)

select * from student limit 0,2;

-- 查询第3,4条记录(第2页的数据)

select * from student limit 2,2;

-- 查询第5,6条记录(第3页的数据)

select * from student limit 4,2;

-- 查询第7,8条记录 (没有记录不显示)

select * from student limit 6,2;

5.9 查询排序

-- 2.10 查询排序(order by )

-- 语法 :order by 字段 asc/desc

-- asc: 顺序,正序。数值:递增,字母:自然顺序(a-z)

-- desc: 倒序,反序。数值:递减,字母:自然反序(z-a)

 

-- 默认情况下,按照插入记录顺序排序

select * from student;

 

-- 需求: 按照id顺序排序

select * from student order by id asc;

select * from student order by id; -- 默认正序

 

select * from student order by id desc;-- 反序

 

-- 注意:多个排序条件

-- 需求: 按照servlet正序,按照jsp的倒序

select * from student order by servlet asc,jsp desc;

5.10 分组查询

-- 2.11 分组查询(group by)

-- 需求: 查询男女的人数

-- 预期结果:

-- 男 3

--- 女 2

-- 1) 把学生按照性别分组(group by gender)

-- 2) 统计每组的人数(count(*))

select gender,count(*) from student group by gender;

5.11 分组查询后筛选

-- 2.12 分组查询后筛选

-- 需求: 查询总人数大于2的性别

-- 1) 查询男女的人数

-- 2)筛选出人数大于2的记录(having)

--- 注意: 分组之前条件使用where关键字,分组之前条件使用having关键字

select gender,count(*) from student where group by gender having count(*)>2;