Hello all : I want to show a duplicate value between three columns (1 Viewer)

Matin_Murad

Member
Local time
Today, 00:14
Joined
Jul 1, 2020
Messages
37
إظهار القيمة المكررة بين ثلاثة أعمدة
 

Attachments

  • zzz.png
    zzz.png
    11.5 KB · Views: 46
  • 3or2Colume.accdb
    960 KB · Views: 53
Last edited:

CJ_London

Super Moderator
Staff member
Local time
Today, 08:14
Joined
Feb 19, 2013
Messages
16,618
to what purpose? just to highlight them? delete them? move them around?

the data is not normalised so anything you do will involve more work.

but if you just want a list excluding duplicates use a union query

Code:
select mobile1 as mobile from myTable
union select mobile2 from myTable
union select mobile3 from myTable

this will automatically remove duplicates
 

Users who are viewing this thread

Top Bottom