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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T03:51:56+00:00 2026-05-21T03:51:56+00:00

I have trawled through tens of forums now to find MySql syntax to insert

  • 0

I have trawled through tens of forums now to find MySql syntax to insert a row if there is no other row in the table that contains a give value.

I know it has to be simple but so far have found nothing that does what I need…

My requirement is simply:

if not exists (select * from table1 where int_value2 = 123) then
insert into table1 (value1, int_value2, value3)
values ('a', 1, 'a');

I apologise for how simple I know this is going to be but thanks in advance for any help you can offer.

  • 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-21T03:51:57+00:00Added an answer on May 21, 2026 at 3:51 am

    Define a UNIQUE constraint if it not already exists:

    ALTER TABLE table1  ADD UNIQUE(int_value2);
    
    INSERT IGNORE INTO table1 (value1, int_value2, value3) VALUES ('a', 1, 'a');
    

    Note the ‘IGNORE` bit.

    If you need ‘fresh’ data in value1/value3, you could look at ON DUPLICATE KEY UPDATE.

    INSERT INTO table1 (value1, int_value2, value3)
    SELECT 'a', 1, 'a' FROM DUAL 
    WHERE NOT EXISTS(SELECT * FROM table1 WHERE int_value2=123);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've trawled through Google for days on end now trying to find a solution
I have trawled google trying to find someone who has done what I am
I have trawled the internet for this answer, but alas couldn't find one. In
so I have trawled true all threads in here and any where else where
I have followed numerous screen casts as well as trawled the backbone docs extensively
have 2 questions : A computer with 32-bit address uses 2-level page table (9
I've trawled the SO website thinking this is pretty obvious but alas I have
**Have it working now. I forgot to populate the Array List. How embarrassing. I'm
I know this question has been posted here before, and I've trawled through as
have been trying couple of hours now to make my iphone app universal. The

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.