pl/sql中查询2个数值并判断是否合格
表中字段日期数a,日期数b,c查询结果:日期数a,日期数b,是否超期101*101否104104否10111011超期5656超期5454否最好可以在结果下面插入行日期数...
表中字段 日期数a ,日期数b,c 查询结果:日期数a , 日期数b, 是否超期
10 1 * 10 1 否
10 4 10 4 否
10 11 10 11 超期
5 6 5 6 超期
5 4 5 4 否
最好可以在结果下面插入行
日期数a 数量(计算日期数b数量)
10 3
5 2
如果日期数b里面有相同的,则不计算入“数量”中 展开
10 1 * 10 1 否
10 4 10 4 否
10 11 10 11 超期
5 6 5 6 超期
5 4 5 4 否
最好可以在结果下面插入行
日期数a 数量(计算日期数b数量)
10 3
5 2
如果日期数b里面有相同的,则不计算入“数量”中 展开
1个回答
展开全部
SQL> create table test(
2 a int,
3 b int,
4 c varchar2(2)
5 );
Table created
SQL> insert into test
2 select 10,1,null from dual union
3 select 10,4,null from dual union
4 select 10,11,null from dual union
5 select 5,6,null from dual union
6 select 5,4,null from dual;
5 rows inserted
SQL> select a,b,
2 case when b > a then '超期' else '否' end
3 from test;
A B CASEWHENB>ATHEN'超期'ELSE'否'E
--------------------------------------- --------------------------------------- ------------------------------
5 4 否
5 6 超期
10 1 否
10 4 否
10 11 超期
SQL> select a,count(distinct b)
2 from test
3 group by a;
A COUNT(DISTINCTB)
--------------------------------------- ----------------
5 2
10 3
SQL>
2 a int,
3 b int,
4 c varchar2(2)
5 );
Table created
SQL> insert into test
2 select 10,1,null from dual union
3 select 10,4,null from dual union
4 select 10,11,null from dual union
5 select 5,6,null from dual union
6 select 5,4,null from dual;
5 rows inserted
SQL> select a,b,
2 case when b > a then '超期' else '否' end
3 from test;
A B CASEWHENB>ATHEN'超期'ELSE'否'E
--------------------------------------- --------------------------------------- ------------------------------
5 4 否
5 6 超期
10 1 否
10 4 否
10 11 超期
SQL> select a,count(distinct b)
2 from test
3 group by a;
A COUNT(DISTINCTB)
--------------------------------------- ----------------
5 2
10 3
SQL>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询