码迷,mamicode.com
首页 > 数据库 > 详细

Oracle数据库,模糊查询、去重查询

时间:2016-12-15 20:50:37      阅读:519      评论:0      收藏:0      [点我收藏+]

标签:ora   rac   聚合函数   like   函数   core   表示   之间   count   

分组去重查询,并执行某一个函数 :select  分组字段,聚合函数 from 表名 where 条件 group by分组字段 

select  分组字段,聚合函数 from 表名 where 条件 group by分组字段 having过滤条件

例:select cno, avg(degree) from score group by cno having count(sno)>=5;

 

模糊查询  : like

select * from 表名 where 字段 like   ‘字符串%’        表示字符串的后面可有可无,并没有字数限制

select * from 表名 where 字段 like    ‘字符串__’      表示字符串的后面必须有,并且有多少个下划线就有多少个字符

 

多个表之间的关联查询  :select 字段 from  表名n  jion   表名 m   on where   n.表1中的字段= m.表2中的字段

 

Oracle数据库,模糊查询、去重查询

标签:ora   rac   聚合函数   like   函数   core   表示   之间   count   

原文地址:http://www.cnblogs.com/zhaotiancheng/p/6184403.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!