Oracle运算符
Oracle运算符包括算术运算符、关系运算符和逻辑运算符。
所需表结构:
Oracle算术运算符
Oracle算术运算符包括(+)、(-)、(*)、(/)四个,其中(/)获得的结果是浮点数。
案例1、求2018年上学期数学的平均成绩
select a.*, b.coursename, c.stuname
from score a, course b, stuinfo c
where a.courseid = b.courseid
and a.stuid = c.stuid;
select b.coursename, sum(a.score) / count(1)
from score a, course b
where a.courseid = b.courseid
and a.courseid = 'R20180101'
group by b.coursename;
-- 当结果中包含聚合函数 sum(a.score) / count(1) 时,一般与分组(group by)一起用。
SQL执行结果如下:
Oracle关系运算符
Oracle关系运算符在where条件语句当中经常使用到,常用的关系如下:
符号 | 解释 | 符号 | 解释 |
---|---|---|---|
= | 等于 | <>或者!= | 不等于 |
> | 大于 | >= | 大于或者等于 |
< | 小于 | <= | 小于或者等于 |
Oracle逻辑运算符
Oracle的逻辑运算符有三个:AND、OR、NOT
案例2、查看2018年上学期数学成绩在85-95分之间的同学:
select a.*, b.coursename, c.stuname
from score a, course b, stuinfo c
where a.courseid = b.courseid
and a.stuid = c.stuid
and a.score >= '85'
and a.score <= '95';
SQL执行结果如下:
Oracle字符串连接符||
Oracle中利用字符串连接符||(即双竖线)来连接查询结果。
案例1、字符串连接符||:
select '姓名:' || c.stuname || ', 课程:' || b.coursename || ', 成绩:' || a.score || '分。' as sxcj
from score a, course b, stuinfo c
where a.courseid = b.courseid
and a.stuid = c.stuid
SQL执行结果如下: