本文介绍了Oracle中如何将两列的比较选择为一列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!
问题描述
我不知道如何在我的 SELECT 查询中添加一列来指示两列是否包含 Oracle 中的相同数据.
I cannot figure out how to add a column to my SELECT query indicating whether two columns contain the same data in Oracle.
我想写一个这样的查询:
I would like to write a query like:
select column1, column2, column1=column2 from table
而且,如果我有这张桌子:
and, if I have this table:
+---------+---------+
| column1 | column2 |
+---------+---------+
| value1 | value1 |
| value2 | value3 |
| value4 | value4 |
+---------+---------+
得到如下结果:
+---------+---------+-----------------+
| column1 | column2 | column1=column2 |
+---------+---------+-----------------+
| value1 | value1 | true |
| value2 | value3 | false |
| value4 | value4 | true |
+---------+---------+-----------------+
执行此操作的正确语法是什么?
What is the correct syntax to do this?
推荐答案
如果您也想考虑空值相等,请尝试以下操作
If you want to consider null values equality too, try the following
select column1, column2,
case
when column1 is NULL and column2 is NULL then 'true'
when column1=column2 then 'true'
else 'false'
end
from table;
这篇关于Oracle中如何将两列的比较选择为一列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
The End


大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)