一、select语句的功能:
投影(projection):获取表中的某一列或者多列数据
选择(selection ):获取表中的某一行或者多行数据
关联(join):多表联合查询
二、sql语句书写标准
1、不区分大小写
2、可以换行书写
3、用分号表示一行结束
4、通常一个子句一行
5、关键词不能简写或换行
三、select语句的语法结构
sql> select *|{[distinct]} column|expression [alias],...... from tables;
select: 指定显示的列,后接通配符,枚举列,表达式,四则运算
from: 指定所选择的列来源,后接结果集
1、查询表中所有行所有列
sql> select * from dept;
sql> select * from emp;
2、查询表中感兴趣的指定列
sql> select empno,ename,sal from emp; ---枚举要查询的列
sql>select * from tab;
四、在select语句中使用算术表达式
sql>select ename,sal+300 from emp;
关于null值:null是一个不确定的值,它不等于0或者是空格
问题:使用null值进行四则运算,结果是?
五、用select语句对列进行别名
1、用于对列进行重命名
sql>select ename name from emp;
sql>select ename as name from emp;
sql>select ename "new name" from emp;
六、select语句的“||” 连接操作
1、可以连接:列和字符串 列和列 字符串和字符串
sql>select ename||'sal is '||sal from emp;
2、压缩重复值
sql>select distinct job from emp;
七、在select语句中spool的使用
spool xxx
select * from emp;
spool off
1、使用@运行
2、在shell中运行
使用shell有什么用?? 在工作中进程需要在shell环境中调用sqlplus进入数据库去执行某些sql,这中需求就可用使得我们不需要手工干预(不需要@)
原文链接:https://www.f2er.com/oracle/211186.html