返回顶部
首页 > 资讯 > 数据库 >[学习笔记] Oracle运算符、连接符、结果去重、范围查询、模糊查询
  • 288
分享到

[学习笔记] Oracle运算符、连接符、结果去重、范围查询、模糊查询

摘要

运算符 符号 解释 + 加法 - 减法 * 乘法 / 除法,结果是浮点数 = 等于 > 大于 = 大于或者等于

[学习笔记] Oracle运算符、连接符、结果去重、范围查询、模糊查询

运算符

符号 解释
+ 加法
- 减法
* 乘法
/ 除法,结果是浮点数
= 等于
> 大于
< 小于
<>或者!= 不等于
>= 大于或者等于
<= 小于或者等于
AND 逻辑与
OR 逻辑或
NOT 逻辑非

字符串连接符

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;

查询结果去重

SELECT DISTINCT 列1,列2,列3... from 表名;

select distinct b.coursename, t.score
   from score t, course b
   where t.courseid = b.courseid
   and t.courseid = 'R20180101';

DISTINCT后面只有一个列时,表示的是单个字段查询结果去重

DISTINCT后面有多个列时,表示的是多个字段组合的查询结果去重,即所有字段的值全部一样才去重。

IN操作符

select t.stuid,
       t.courseid,
       t.score,
       b.stuname,
       b.sex,
       b.age,
       b.classno,
       b.grade
  from score t, stuinfo b
 where t.stuid = b.stuid
   and t.courseid = 'R20180101'
   and t.score in ('85','89','79');

BETWEEN...AND

select t.stuid,
       t.courseid,
       t.score,
       b.stuname,
       b.sex,
       b.age,
       b.classno,
       b.grade
  from score t, stuinfo b
 where t.stuid = b.stuid
   and t.courseid = 'R20180101'
   and t.score between '70' and '95';

LIKE模糊查询

select * from STUINFO t where t.stuname like '张%';
select * from STUINFO t where t.stuname like '张_';
  • %:表示零个或者多个任意字符。
  • _:表示一个任意字符。
  • :表示转义字符,“%”在字符串中表示字符“%”。
您可能感兴趣的文档:

--结束END--

本文标题: [学习笔记] Oracle运算符、连接符、结果去重、范围查询、模糊查询

本文链接: https://lsjlt.com/news/4972.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作