我有一张表:
column 1 column 2
1 1234
2 5678
3 9192
我想关联第1列中的值=将第2列作为新列。
请指教!
答案 0 :(得分:0)
如果您想查看column1和two匹配,那么您可以使用以下内容:
Select column1,
column2,
case
when column1 = column2 then
'Match'
else
'No Match'
end as 'Matching'
from tableX