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 8320801
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T22:47:08+00:00 2026-06-08T22:47:08+00:00

Ive been stuck on this all day and finally found a script which would

  • 0

Ive been stuck on this all day and finally found a script which would remove all data with the exception of the original, anyway, i done the necessary changes to allow it to work with my code, unfortunately it is spitting out an syntax error. Ive been looking at it for about 2 hours now and i just cant see it.
Anyway, im using the MySQL DB and heres the script im using..

DELETE * 
FROM music u
JOIN (

SELECT melody, chorus1, chorus2, MIN( id ) AS minid
FROM music
GROUP BY melody, chorus1, chorus2
HAVING (
COUNT( * ) >1
)
) AS dupusers ON u.melody = dupusers.melody
AND u.chorus1 = dupusers.chorus1
AND u.chorus2 = dupusers.chorus2
ORDER BY u.melody, u.chorus1, u.chorus2
WHERE u.id <> minid

and I get the following error:

1064 – You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use
near ‘* FROM music u JOIN ( SELECT melody, chorus1, chorus2, MIN( id )
AS minid ‘ at line 1

which is..

* 
FROM music u
JOIN (

SELECT melody, chorus1, chorus2, MIN( id ) AS minid
  • 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-06-08T22:47:11+00:00Added an answer on June 8, 2026 at 10:47 pm

    its because you have syntax error at DELETE * and you have used WHERE clause after ORDER BY clause. no need to use ORDER BY clause in DELETE query without limit try:

    DELETE u
    FROM music u
        INNER JOIN (
            SELECT melody, chorus1, chorus2, MIN( id ) AS minid
            FROM music
            GROUP BY melody, chorus1, chorus2
            HAVING COUNT(*) >1
        ) dupusers
        ON u.melody = dupusers.melody
            AND u.chorus1 = dupusers.chorus1
            AND u.chorus2 = dupusers.chorus2
    WHERE u.id <> minid;
    

    another easy way to remove duplicates is to add unique index on table see here.

    ALTER IGNORE TABLE music ADD UNIQUE KEY ix1(melody, chorus1, chorus2);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've been stuck on this all day, I have a script I'm working with
I'm stuck. Been messing with this all day. To me this looks like it
Possible Duplicate: Weird “406 not acceptable” error I've been stuck on this ALL DAY!
I've been stuck on this all day, and have just run out of ideas.
I've been stuck on this all day. I have a setup like the one
I've been stuck on this for ever and I finally figured it out and
Hi I've been stuck on this problem for a while and would appreciate your
I worked on this all day and am stuck on my logic in how
I've been working at this all day so I hope I don't forget any
So I've been stuck on this problem for a day or so now and

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.