数据分析师自学系列-Oracle
SQL常见基础语句
1.select语句
select*from 表名 #查询表中所有列
select 列名1,列名2,列名3,···from 表名1
#在表名1中查询列名1,列名2,列名3,···
select 列名1,列名2,from 表名1,表名2,表名3,···
#在表名1,表名2,表名3,···中查询列名1,列名2,列名3,···
select 表达式 from 表1
#在表1中查询表达式
2.为列指定别名
select 列1 as "别名1",列2 as "别名2" from 表1
等同于
select 列1 as "别名1",列2 as "别名2" from 表1
3.显示不重复记录/查询某列中含有的所有不重复的值
select distinct 列名 from 表名