我需要在同一行中找到副本。
我有这样的问题
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语句。
答案 0 :(得分:3)
您可以使用LIKE
select * from my_table
where ADR_Address like '%' ||ADR_Nr