I have a terrible to identify unique record(value). I have a table like this:
ID NAME DESCRIPTION
1 Yanagida Fumit best author
2 Ha Il-kwan new author
3 Fumit Yanagida best author
4 Ha Il Kwan new author
5 Ilkwan Ha new author
There are 5 records in same table called autho
table. But in actually, there are 2 authors.
First record and third record are stored from one author information and second, 4th and 5th are one author.
I want to make this like below.
ID NAME DESCRIPTION
1 Yanagida Fumit best author
2 Ha Il Kwan new author
It means that, I am going to erase all duplicates against reverse name problem. I wonder if I can compare two values(string) in same column. Help me please. I will be happy with your any help!