如何在同一行中查找重复值

时间:2016-06-20 07:27:17

标签: sql oracle

我需要在同一行中找到副本。

我有这样的问题

        SpannableString text = new SpannableString("RAHUL");
        text.setSpan(new ForegroundColorSpan(white), 0, 2, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
        text.setSpan(new ForegroundColorSpan(blue), 3, 4, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
        headerHolder.mTextViewLabel.setText(text, TextView.BufferType.SPANNABLE);

所以你可以看到S.no ADR_Address ADR_Nr 1 Rudolf-Street- 8 8 2 Maxstresst-10 10 ADR_Address有两次房子ADR_Nr

我的任务是找到这种重复的值。

任何人都可以帮我找到使用Oracle SQL语句。

1 个答案:

答案 0 :(得分:3)

您可以使用LIKE

select * from my_table 
where ADR_Address like '%' ||ADR_Nr