devxlogo

Removing a Duplicated Item

Removing a Duplicated Item

Question:
I have tried the following code:

 SELECT distinct title, id from table where .....order by title

and it returns:

    A 001
    A 002
    B 003

The result I want is:

    A 001
    B 003

or

    A 002
    B 003

Item A is duplicated for storing extended detail. How can I make that work?

Answer:
I didn’t get to test this, but I think what is required is to do a self join to the table and look for an inequality on title or on ID to force the single instance out.

Something like this:

 select a.title, a.idfrom mytable awhere a.title not in(select b.title from mytable b)

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist