sql 回顾(mysql)
##1. mysql数据类型
一共三种:Text、Number、Data/Time
1.1 Text
1 | 1)CHAR(size) 最大255 |
1.2 Number
1 | 1)TINYINT(size) 带符号-128到127,无符号0到255 |
1.3 Date
1 | 1)DATE() 格式:YYYY-MM-DD |
2. CRUD
1 | select column_name from table_name // 查看表的某些列 |
3. 高级查询
1)limit
select * from table_name limit x // 限制行数
2)like
select * from table_name where name like ‘…’ // 定义模糊查询
3)通配符
1 | % 代替0个或多个字符 |
4)in
select * from table_name where name in (……) // 允许在where中定义多个值
5)between…and…
select * from table_name where column_name between x and y // 在某个范围内的
6)not
可以加在in和between前面表示取反
7)as
可以给列或者表取别名
8)join
inner join:如果表中至少一个匹配,则返回行 // 两边都要满足条件
left join:即使右表中没有匹配,也返回行 // 满足左边
right join:即使左表中没有匹配,也返回行 // 满足右边
full join:只要其中一个表中存在,则返回行 // 保证两张表的数据全量
9)union
合并select查询到的结果,需要查询的是相同的字段。例如:
1
2
3
4 SELECT country FROM Websites
UNION
SELECT country FROM apps
ORDER BY country;
这样的话两张表中相同的列会进行去重
可以使用union all进行合并,取消去重
##4. sql索引
在不读取整个表的情况下,索引使数据库能够更快的查找数据
用户是无法看到索引的,它们只是用来加速查询,但是有索引的表插入数据的时候会更慢一些,因为插入的同时会更新索引
语句:
1
2 create index index_name on table_name (column_name) // 允许使用重复值
create unique index index_name on table_name (column_name) // 不允许使用重复值
5. sql常用函数:
Aggregate:
1 | 1)AVG() - 返回平均值 |
Scalar:
1 | 1)UCASE() - 将某个字段转换为大写 |