目录
一.目的
1.想:提高学习效率,所以将老师的内容记录下来
二.参考
1.SIKI学院
三.注意
1.课程资源下载
1.MySQL下载地址
四.操作:成功
1.命令
1.去重
1.where条件
一.目的
1.想:提高学习效率,所以将老师的内容记录下来
二.参考
1.SIKI学院
二.参考
1.SIKI学院
登录 - SiKi学院 - 生命不息,学习不止!正在上传…重新上传取消http://www.sikiedu.com/my/course/48http://www.sikiedu.com/my/course/48
三.注意
1.课程资源下载
https://download.csdn.net/download/qq_40544338/33345439https://download.csdn.net/download/qq_40544338/33345439
1.MySQL下载地址
MySQL :: Download MySQL Installer (Archived Versions)
- good:官网的,和老师保持一致。
四.操作:成功
1.命令
1.去重
select first_name from actor actor ;
select first_name from actor order by first_name;
select distinct first_name from actor order by first_name;
1.where条件
20,where条件
1,数字 > < = >= <= <>
2,字符串 = '' > < = >= <= <> !=
逻辑操作
is 仅用is null或is not null
and or not
and 优先级> or
范围判断
in (not in)
between (not between) 示例:select * from category where category_id between 1 and 9;
like (not like) % _
示例1:select * from category where name like 'A%';
关于NULL的条件
is NULL
is not NULL



