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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T08:54:22+00:00 2026-06-08T08:54:22+00:00

I have a need to do an insert to MySQL where a record does

  • 0

I have a need to do an insert to MySQL where a record does not exist in the destination table already

my query

INSERT INTO comment (`mid`, `pid`, `comment_text`, `comment_date`, `comment_type`) 
 VALUES (180, 2, NULL, '2012-07-26 10:19:00', 'tag')  WHERE NOT EXISTS ( SELECT * FROM `comment` WHERE `mid`=180 AND `pid`=2 AND `comment_type`='tag')

however when this runs I get this error

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 ‘WHERE NOT EXISTS ( SELECT * FROM comment WHERE mid=180 AND
`pid’ at line 2

Any ideas essentially i want to stop duplicate rows being added to this table when they match the values

  • 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-08T08:54:23+00:00Added an answer on June 8, 2026 at 8:54 am

    try:

    INSERT IGNORE INTO comment
    (
     `mid`, `pid`, `comment_text`, `comment_date`, `comment_type`
    )
    (
        SELECT 180, 2, NULL, '2012-07-26 10:19:00', 'tag'
        FROM comment
        WHERE `mid`=180 AND
              `pid`=2 AND
              `comment_type`='tag'
        LIMIT 1
    );
    

    EDIT: Better way to do this:

    to remove duplicates from a table see here

    ALTER IGNORE TABLE comment ADD UNIQUE KEY ix1(mid, pid, comment_type);
    
    INSERT IGNORE INTO comment
    (
     `mid`, `pid`, `comment_text`, `comment_date`, `comment_type`
    )
    VALUES 
    (
     SELECT 180, 2, NULL, '2012-07-26 10:19:00', 'tag'
    );
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here my code, I need to insert into mysql database I have mysql,php,android 1)
I have a form I need to insert some information into one table. Then
I have around 4000 entities that I need to insert into a Java App
I have a ModelAdmin where I need to insert some html-snippet that is not
I have a table that has duplicate email address, I need to insert just
I have a MySQL insert statement that inserts data from an existing Despgoods table
I have s MySQL database and I need to insert some specific data in
I have an insert script with mySQL. I need to place the date and
I have an application where I need to INSERT an auto_increment value from a
I need to insert, delete and update data using a xml file. I have

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.