SQL compare two columns for same value

后端 未结 2 1607
予麋鹿
予麋鹿 2021-01-29 05:25

With SQL Server 2012, I have two columns that I would like to compare. Both are on the same table, so no joins are needed.

Basically I need to compare two columns, for e

2条回答
  •  别那么骄傲
    2021-01-29 05:58

    You can go like:

    SELECT CASE WHEN Scan1 = Scan2 THEN 1 
           ELSE 0 END AS ColumnAlias
    FROM YourTable
    

提交回复
热议问题