Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6135113
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T17:26:23+00:00 2026-05-23T17:26:23+00:00

We recently had some issues where a sql script that would remove duplicate entries

  • 0

We recently had some issues where a sql script that would remove duplicate entries from the table would not use the most recent entry as the one to keep. I think this line is the issue

delete from vaccine_patient_details 
where vacc_pat_guid <> 
    (Select top 1 vacc_pat_guid 
     from vaccine_patient_details as v 
     where v.patient_guid = patient_guid and 
           v.vaccine_guid = vaccine_guid 
     order by date_given desc)

Is that correct syntax? I found another version of the script working on a different table. (names changed to match the first example)

delete from vaccine_patient_details 
where vacc_pat_guid <> 
    (Select top 1 vacc_pat_guid 
     from vaccine_patient_details as v 
     where v.patient_guid = vaccine_patient_details.patient_guid and 
           v.vaccine_guid = vaccine_patient_details.vaccine_guid 
     order by date_given desc)

This one uses the the table name of the deleted table in the inner where clause, can that be causing a problem in my first version?

Details about the Table:

  1. Any columns that end in guid are a
    datatype of uniqueidentifier
  2. vacc_pat_guid is the primary key and is unique.
  3. date_given is a datetime that could be null. If there is a duplicate where one is null and one is not null it should prefer the not null one.
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T17:26:24+00:00Added an answer on May 23, 2026 at 5:26 pm

    Whithout any aliases on the first table, the query is equivalent to :

    delete from vaccine_patient_details 
    where vacc_pat_guid <> 
        (Select top 1 vacc_pat_guid 
         from vaccine_patient_details as v 
         where v.patient_guid = v.patient_guid and 
               v.vaccine_guid = v.vaccine_guid 
         order by date_given desc)
    

    And a good one would be

    delete v1 from vaccine_patient_details as v1
    where v1.vacc_pat_guid <> 
        (Select top 1 v.vacc_pat_guid 
         from vaccine_patient_details as v 
         where v.patient_guid = v1.patient_guid and 
               v.vaccine_guid = v1.vaccine_guid 
         order by v.date_given desc)
    

    By specifiying the table name in the second query you show us, the optimizer understand that he have to join with the first table, because the seconde table is named ‘v’, and the first is so ‘vaccine_patient_details’, and he is not confuse.

    He is confused in the first because he doesn’t know if patient_guid is the field in the first table or in the second one. So it takes the closer, so the second one.

    Edit :

    From http://dev.mysql.com/doc/refman/5.0/en/delete.html

    If you declare an alias for a table,
    you must use the alias when referring
    to the table:

    DELETE t1 FROM test AS t1, test2 WHERE
    …

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have recently upgraded from websphere 5.1.2 to websphere 6.1 server. I had some
I've recently had some issues implementing a zooming feature into a painting application. Please
I recently had some problems with my VS 2008, and was recommended to reinstall.
I've recently had some trouble moving the location of the indexes folder (for the
Recently I had to do some very processing heavy stuff with data stored in
I had some site templates designed for me recently. I got the final HTML
I recently had a problem in my app where some of the subviews I
I recently had cause to work with some Visual Studio C++ projects with the
I've recently moved to Java, but I've had some problems with variable aliasing. I've
I had recently a problem with oom-killer starting to kill processes after some time.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.