课程名称:人人都能学会数据分析
课程章节:SQL
课程内容:
认识数据表结构、安装配置sql、sql的基础语法
学习收获:
数据库操作语言:SQL - 访问,
处理数据库的计算机语言数据库:mySQL (小) and oracle (大)
数据库管理工具:navicat 或者 PL/SQL developer
---
数据——表——数据库
通过Navicat数据库管理工具,使用SQL数据表,完成数据的存储。
表的基本结构:唯一表名,唯一字段,记录
----
SQL基础语法:
select * from person (*表示所有字段,可输入想要的字段e.g., A,B)
select * from person where firstname = JOHN
---
模糊查询:select * from 表名 where ‘招聘岗位’ like ‘%数据分析师’;
多个值查询:select * from 表名 where ‘招聘岗位’ in (‘数据分析师’,‘产品经理’);
排除数据查询:①.select * from 表名 where not 工作经验 = '经验1-3年';(单个排除) ②.select * from 表名 where not 工作经验 = '经验1-3年' and 工作地点 in ('北京','上海');(多个排除)数据排序查询:①.select * from 表名 where not 工作经验 = '经验1-3年 order by '薪资区间''; (单个排序) ②.select * from 表名 where not 工作经验 = '经验1-3年 order by '薪资区间 ' desc,'工作地点’; (多个排序)desc:字段逆序排序
asc字段正序排序