Jump to content

Select, Distinct & Duplication


ReeceSayer

Recommended Posts

Hi,

 

I'm trying to remove duplicates from my database table (vacancy).

 

Currently using the following SQL statement:

 

SELECT title, jobref, location, description, salary, apply FROM vacancy WHERE jobref IN (SELECT DISTINCT jobref FROM vacancy)

 

However, this still brings back the duplicates, each statement works on its own (I.e. DISTINCT brings back unique values for that column, and SELECT * brings back all rows & Columns) so i'm not entirely sure why it's not working.

 

If there's a simpler way of doing this i'm open to trying it out.

 

Cheers

Link to comment
Share on other sites

This will get the details of those records with duplicated jobrefs (if that is what you are after)

 

SELECT title, jobref, location, description, salary, apply
FROM vacancy
   INNER JOIN (
    SELECT jobref, COUNT(*) as tot
    FROM vacancy
    GROUP BY jobref
    HAVING tot > 1
   )  as x USING (jobref)
ORDER BY jobref

Link to comment
Share on other sites

This will get the details of those records with duplicated jobrefs (if that is what you are after)

 

SELECT title, jobref, location, description, salary, apply
FROM vacancy
INNER JOIN (
 SELECT jobref, COUNT(*) as tot
 FROM vacancy
 GROUP BY jobref
 HAVING tot > 1
) as x USING (jobref)
ORDER BY jobref

 

Thanks works brilliantly, I've just used IGNORE when importing the data and set the jobrefs column to unique which also seems to do the job (i'm importing a different data-set every day and didn't want duplicates).

 

Thanks again

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.