笔记...mysql第一天学习目标.

mysql第一天:
1.能够知道数据库的作用
用来持久化存储和快速读取数据的

2.能够完成MySQL数据库的安装
sudo apt-get install mysql # ubuntu下服务器端的安装
sudo apt-get install mysql-client

3.能够知道数据类型和数据约束的作用
1.数据类型,可以指定存储的大小和字段类型。
2.not null, default, primary key, foreign key

4.能够使用Navicat创建数据库并向表中添加数据

5.能够写出增、删、改、查的SQL语句
insert into 表名 (字段列表) values(值列表);
delete from 表名 where 条件;
update 表名 set 字段=值 where 条件;
select * from 表名 where 条件;

6.能够知道去除重复数据行的关键字
distinct
select 分组列 from 表名 group by 分组字段;

7.能够写出模糊查询的SQL语句
like ‘%_’

8.能够知道升序查询和降序查询的关键字
asc desc

9.能够使用limit关键字实现分页查询
limit 偏移量(start), 显示数量(count);
每页返回结果 = limit 每页数量*(页数-1), 每页数量;

10.能够写出查询总行数的SQL语句
count(*)

11.能够知道分组查询的SQL语句
select gender from students group by gender;

12.能够写出内连接查询的SQL语句
select * from students as s inner join classes as c on s.cls_id=c.id;

13.能够写出左连接查询的SQL语句
left join

14.能够写出右连接查询的SQL语句
right join

15.能够写出子查询的SQL语句
select * from students where height > (select avg(height) from students);

小结
登录数据库: mysql -uroot -p
退出数据库: quit 或者 exit 或者 ctr + d
创建数据库: create database 数据库名 charset=utf8;
使用数据库: use 数据库名;
删除数据库: drop database 数据库名;
创建表: create table 表名(字段名 字段类型 约束, …);
修改表-添加字段: alter table 表名 add 字段名 字段类型 约束
修改表-修改字段类型: alter table 表名 modify 字段名 字段类型 约束
修改表-修改字段名和字段类型: alter table 表名 change 原字段名 新字段名 字段类型 约束
修改表-删除字段: alter table 表名 drop 字段名;
删除表: drop table 表名;
查询数据: select * from 表名; 或者 select 列1,列2,… from 表名;
插入数据: insert into 表名 values (…) 或者 insert into 表名 (列1,…) values(值1,…)
修改数据: update 表名 set 列1=值1,列2=值2… where 条件
删除数据: delete from 表名 where 条件

你可能感兴趣的:(学习)