这也算是我学习一下方法(如何对查询结果进行判断显示)
我用的pl/sql
Orical,SELECt a * b AS c FROM d,但是其中一列有空值,怎麼用判断计算,如果为空不显示(即空白),谢谢
答案:2 悬赏:70 手机版
解决时间 2021-01-26 00:44
- 提问者网友:城市野鹿
- 2021-01-25 10:08
最佳答案
- 五星知识达人网友:从此江山别
- 2021-01-25 11:29
2种方式:
--1,套一层,加过滤条件
select * from (select a * b as c from calc t ) d where d.c is not null
--2,直接过滤 null的情况进行计算
select a * b as c from calc t where t.a is not null and t.b is not null
--1,套一层,加过滤条件
select * from (select a * b as c from calc t ) d where d.c is not null
--2,直接过滤 null的情况进行计算
select a * b as c from calc t where t.a is not null and t.b is not null
全部回答
- 1楼网友:刀戟声无边
- 2021-01-25 13:02
不明白啊 = =!
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯