<bdo id='myrwB'></bdo><ul id='myrwB'></ul>

    <small id='myrwB'></small><noframes id='myrwB'>

  1. <i id='myrwB'><tr id='myrwB'><dt id='myrwB'><q id='myrwB'><span id='myrwB'><b id='myrwB'><form id='myrwB'><ins id='myrwB'></ins><ul id='myrwB'></ul><sub id='myrwB'></sub></form><legend id='myrwB'></legend><bdo id='myrwB'><pre id='myrwB'><center id='myrwB'></center></pre></bdo></b><th id='myrwB'></th></span></q></dt></tr></i><div id='myrwB'><tfoot id='myrwB'></tfoot><dl id='myrwB'><fieldset id='myrwB'></fieldset></dl></div>
  2. <tfoot id='myrwB'></tfoot>
    1. <legend id='myrwB'><style id='myrwB'><dir id='myrwB'><q id='myrwB'></q></dir></style></legend>

      Oracle中如何将两列的比较选择为一列

      How to select the comparison of two columns as one column in Oracle(Oracle中如何将两列的比较选择为一列)
      <legend id='zKQTO'><style id='zKQTO'><dir id='zKQTO'><q id='zKQTO'></q></dir></style></legend>

      <i id='zKQTO'><tr id='zKQTO'><dt id='zKQTO'><q id='zKQTO'><span id='zKQTO'><b id='zKQTO'><form id='zKQTO'><ins id='zKQTO'></ins><ul id='zKQTO'></ul><sub id='zKQTO'></sub></form><legend id='zKQTO'></legend><bdo id='zKQTO'><pre id='zKQTO'><center id='zKQTO'></center></pre></bdo></b><th id='zKQTO'></th></span></q></dt></tr></i><div id='zKQTO'><tfoot id='zKQTO'></tfoot><dl id='zKQTO'><fieldset id='zKQTO'></fieldset></dl></div>
        <bdo id='zKQTO'></bdo><ul id='zKQTO'></ul>
        • <small id='zKQTO'></small><noframes id='zKQTO'>

          <tfoot id='zKQTO'></tfoot>
            <tbody id='zKQTO'></tbody>

              1. 本文介绍了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中如何将两列的比较选择为一列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                ibtmp1是非压缩的innodb临时表的独立表空间,通过innodb_temp_data_file_path参数指定文件的路径,文件名和大小,默认配置为ibtmp1:12M:autoextend,也就是说在文件系统磁盘足够的情况下,这个文件大小是可以无限增长的。 为了避免ibtmp1文件无止境的暴涨导致
                SQL query to group by day(按天分组的 SQL 查询)
                What does SQL clause quot;GROUP BY 1quot; mean?(SQL 子句“GROUP BY 1是什么意思?意思是?)
                MySQL groupwise MAX() returns unexpected results(MySQL groupwise MAX() 返回意外结果)
                MySQL SELECT most frequent by group(MySQL SELECT 按组最频繁)
                Include missing months in Group By query(在 Group By 查询中包含缺失的月份)
                  • <bdo id='o9lUs'></bdo><ul id='o9lUs'></ul>

                      <tbody id='o9lUs'></tbody>

                        <tfoot id='o9lUs'></tfoot>

                        <i id='o9lUs'><tr id='o9lUs'><dt id='o9lUs'><q id='o9lUs'><span id='o9lUs'><b id='o9lUs'><form id='o9lUs'><ins id='o9lUs'></ins><ul id='o9lUs'></ul><sub id='o9lUs'></sub></form><legend id='o9lUs'></legend><bdo id='o9lUs'><pre id='o9lUs'><center id='o9lUs'></center></pre></bdo></b><th id='o9lUs'></th></span></q></dt></tr></i><div id='o9lUs'><tfoot id='o9lUs'></tfoot><dl id='o9lUs'><fieldset id='o9lUs'></fieldset></dl></div>
                        • <small id='o9lUs'></small><noframes id='o9lUs'>

                          <legend id='o9lUs'><style id='o9lUs'><dir id='o9lUs'><q id='o9lUs'></q></dir></style></legend>