SQL语句复习--group by 的用法

今天自己在写需求的时候,运行自己写过的sql,总是报不是group by 分组函数,自己都搞了两个小时了,实在没有办法,最后请教林哥,记得上次请教林哥的也是一个关于group by函数的使用方法,并且,人家已经叮嘱自己下来之后上网上多看看group by函数的使用方法,看来自己真的应该长点记性了,不要再不会用了,因为这可是工作呀!就得要有认真的态度。

select lb.contno,
        decode(cont.conttype, ‘1‘, cont.appntno, ‘2‘, cont.insuredno),
        decode(cont.conttype, ‘1‘, cont.appntname, ‘2‘, cont.insuredname),
        to_date(lb.create_time),
        to_char(lb.sum_total, ‘9999999990.99‘),
        to_char(lb.sum_price, ‘9999999990.99‘),
        to_char(lb.sum_tax, ‘9999999990.99‘),
        max(lb.sid),
        lb.managecom
   from LIS_BUSI_TRANSACTIONS lb, lccont cont
  where ‘1581260514000‘ = ‘1581260514000‘
    and cont.contno = lb.contno
    and lb.invoiceflag in (‘00‘)
    and lb.successflag = ‘1‘
    and not exists
  (select 1 from lcgrpcont c where c.grpcontno = lb.contno)
    and lb.sum_total > 0
    and (cont.currency = ‘01‘ or cont.currency is null)
    and not exists (select 1
           from ljagetendorse a, LIS_BUSI_TRANSACTIONS b
          where a.actugetno = b.sourceid
            and a.getflag = ‘1‘
            and b.ruleid in (‘3‘, ‘6‘, ‘10‘, ‘12‘)
            and a.actugetno = lb.sourceid)
    and exists (SELECT 1 FROM ljapay d where d.otherno = cont.contno)
/*    and lb.contno = ‘1‘
    and to_date(lb.create_time) >= ‘2019-02-10‘
    and to_date(lb.create_time) <= ‘2020-02-14‘
    and lb.managecom like ‘86%‘
    and lb.managecom like ‘86%‘*/
    group by lb.contno,
        decode(cont.conttype, ‘1‘, cont.appntno, ‘2‘, cont.insuredno),
        decode(cont.conttype, ‘1‘, cont.appntname, ‘2‘, cont.insuredname),
        to_date(lb.create_time),
        to_char(lb.sum_total, ‘9999999990.99‘),
        to_char(lb.sum_price, ‘9999999990.99‘),
        to_char(lb.sum_tax, ‘9999999990.99‘),
        lb.sid,
        lb.managecom

  现在上面的函数是能够运行的,group by 函数就是要将查询结果中的每一列都要放到group by的后面。自己当时在写这个sql的时候,也不是怎么搞的,就是报错,可能是因为当时group by后面少放了字段的原因,看来遇到问题不要慌张,要冷静下来,仔细思考,结果一问林哥,人家也没有说啥,自己又尝试着改了一遍就好使了。

不过林哥说:你见哪个开发这样写sql了。

下面这一段,确实,自己都看着恶心。改造一下呗!

select lb.contno,
        decode(cont.conttype, ‘1‘, cont.appntno, ‘2‘, cont.insuredno),
        decode(cont.conttype, ‘1‘, cont.appntname, ‘2‘, cont.insuredname),
        to_date(lb.create_time),
        to_char(lb.sum_total, ‘9999999990.99‘),
        to_char(lb.sum_price, ‘9999999990.99‘),
        to_char(lb.sum_tax, ‘9999999990.99‘),
        max(lb.sid),
        lb.managecom
   from LIS_BUSI_TRANSACTIONS lb, lccont cont
  where ‘1581260514000‘ = ‘1581260514000‘
    and cont.contno = lb.contno
    and lb.invoiceflag in (‘00‘)
    and lb.successflag = ‘1‘
    and not exists
  (select 1 from lcgrpcont c where c.grpcontno = lb.contno)
    and lb.sum_total > 0
    and (cont.currency = ‘01‘ or cont.currency is null)
    and not exists (select 1
           from ljagetendorse a, LIS_BUSI_TRANSACTIONS b
          where a.actugetno = b.sourceid
            and a.getflag = ‘1‘
            and b.ruleid in (‘3‘, ‘6‘, ‘10‘, ‘12‘)
            and a.actugetno = lb.sourceid)
    and exists (SELECT 1 FROM ljapay d where d.otherno = cont.contno)
/*    and lb.contno = ‘1‘
    and to_date(lb.create_time) >= ‘2019-02-10‘
    and to_date(lb.create_time) <= ‘2020-02-14‘
    and lb.managecom like ‘86%‘
    and lb.managecom like ‘86%‘*/
    group by lb.contno,
        cont.conttype, cont.appntno, cont.insuredno, cont.appntname,  cont.insuredname,
        lb.create_time,
        lb.sum_total,
        lb.sum_price,
        lb.sum_tax,
        lb.sid,
        lb.managecom

  这样就好看多了,哈哈!

值得注意的是,像查询结果中使用到的decode函数,等等,一定要将函数中使用到的本表中的字段,一个不落的写在group by的后面才行。

假如我给要查询的结果列起别名,行不行呢?

select lb.contno a,
        decode(cont.conttype, ‘1‘, cont.appntno, ‘2‘, cont.insuredno) b,
        decode(cont.conttype, ‘1‘, cont.appntname, ‘2‘, cont.insuredname) c,
        to_date(lb.create_time) d,
        to_char(lb.sum_total, ‘9999999990.99‘) e,
        to_char(lb.sum_price, ‘9999999990.99‘) f,
        to_char(lb.sum_tax, ‘9999999990.99‘) g,
        max(lb.sid) h,
        lb.managecom j
   from LIS_BUSI_TRANSACTIONS lb, lccont cont
  where ‘1581260514000‘ = ‘1581260514000‘
    and cont.contno = lb.contno
    and lb.invoiceflag in (‘00‘)
    and lb.successflag = ‘1‘
    and not exists
  (select 1 from lcgrpcont c where c.grpcontno = lb.contno)
    and lb.sum_total > 0
    and (cont.currency = ‘01‘ or cont.currency is null)
    and not exists (select 1
           from ljagetendorse a, LIS_BUSI_TRANSACTIONS b
          where a.actugetno = b.sourceid
            and a.getflag = ‘1‘
            and b.ruleid in (‘3‘, ‘6‘, ‘10‘, ‘12‘)
            and a.actugetno = lb.sourceid)
    and exists (SELECT 1 FROM ljapay d where d.otherno = cont.contno)
/*    and lb.contno = ‘1‘
    and to_date(lb.create_time) >= ‘2019-02-10‘
    and to_date(lb.create_time) <= ‘2020-02-14‘
    and lb.managecom like ‘86%‘
    and lb.managecom like ‘86%‘*/
    group by a,b,c,d,e,f,g,h,j

  答案是不行的,会报J标识符无效。

哦!对了,这个是oracle数据库的。

原文地址:https://www.cnblogs.com/dongyaotou/p/12338515.html

时间: 2024-10-06 13:56:34

SQL语句复习--group by 的用法的相关文章

SQL语句:Group By总结

1. Group By 语句简介: Group By语句从英文的字面意义上理解就是"根据(by)一定的规则进行分组(Group)".它的作用是通过一定的规则将一个数据集划分成若干个小的区域,然后针对若干个小区域进行数据处理. P.S. 这里真是体会到了一个好的命名的力量,Group By从字面是直接去理解是非常好理解的.恩,以后在命名的环节一定要加把劲:).话题扯远了. 2. Group By 的使用: 上面已经给出了对Group By语句的理解.基于这个理解和SQL Server 2

SQL语句中的select高级用法

为了更好的了解下面的知识点,我们先创建两张表并插入数据. # 学生表 +----+-----------+------+--------+--------+--------+-----------+ | id | name | age | height | gender | cls_id | is_delete | +----+-----------+------+--------+--------+--------+-----------+ | 1 | 小明 | 18 | 180.00 | 女

sql语句复习(基础-提升-技巧-经典数据开发案例-sql server配置)

1 基础 1.说明:创建数据库 CREATE DATABASE database-name 2.说明:删除数据库 drop database dbname 3.说明:备份sql server --- 创建 备份数据的 deviceUSE masterEXEC sp_addumpdevice 'disk', 'testBack', 'c:mssql7backupMyNwind_1.dat'--- 开始 备份BACKUP DATABASE pubs TO testBack 4.说明:创建新表 cre

LINQ体验(7)——LINQ to SQL语句之Group By/Having和Exists/In/Any/All/Contains

我们继续讲解LINQ to SQL语句,这篇我们来讨论Group By/Having操作符和Exists/In/Any/All/Contains操作符. Group By/Having操作符 适用场景:分组数据,为我们查找数据缩小范围. 说明:分配并返回对传入参数进行分组操作后的可枚举对象.分组:延迟 1.简单形式: var q = from p in db.Products group p by p.CategoryID into g select g; 语句描述:使用Group By按Cat

SQL语句复习【专题九】

视图:View视图的概念:视图是从若干基本表或其他视图构造出来的表.在创建一个视图时,只是存放的视图的定义,也即是动态检索数据的查询语句,而并不存放视图对应的数据在用户使用视图时才去求相对应的数据.所以视图被称作“虚表”.--创建视图 replace 是可选的.--创建视图需要比较高的权限,给scott 授予 dba 权限grant dba to scott--创建视图,如果已经存在则替换create or replace view view_emp as ( select empno,enam

SQL语句中OVER函数的用法

over不能单独使用,要和分析函数:rank(),dense_rank(),row_number()等一起使用.其参数:over(partition by columnname1 order by columnname2)含义:按columname1指定的字段进行分组排序,或者说按字段columnname1的值进行分组排序.例如:employees表中,有两个部门的记录:department_id =10和20select department_id,rank() over(partition

SQL语句复习【专题四】

多表查询 sql 92多表查询 sql92.sql99 标准--查询所有员工的姓名,部门编号,部门名称select * from empselect * from dept--笛卡尔集select * from emp, dept--消除笛卡尔集中的冗余的数据select * from emp, deptwhere emp.deptno=dept.deptno--表的连接查询条件 等值连接查询--查询所有员工的姓名,部门编号,部门名称注意:如果多个表间存在相同的字段的名称,那么必须指明显示的字段

数据库中sql语句复习

/* 表T中某属性(xx)重复出现N次的所以记录. eg:表A 中 姓名重复出现3次以上的所以记录. 思路:先找出超过了3次的姓名有哪些,再把这些姓名的记录提取出来. */ select * from A where name in ( select name form A group by name having count(name)>3  ) /* 查询A表中第n至m条记录 eg:查询A(ID,Name)表中第31至40条记录 */ mysql ::  Select * from A li

【水到爆】SQL语句复习

选课系统表结构如下:学生表:student(sno,sname,sex,age,class)课程表:course(cno,cname)选课表:sc(sno,cno,score)(1)查询选修了'数据库应用'的学生学号和姓名(2)查询选修了3门课程的学生姓名和学号? 例如,做如下测试数据: (1) SELECT sno,sname FROM student WHERE student.sno in(SELECT sno from sc WHERE sc.cno=(select cno from c