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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T21:21:47+00:00 2026-05-30T21:21:47+00:00

Alright so a quick SQL question here(using sql-server-2008). I have a mapping table names

  • 0

Alright so a quick SQL question here(using sql-server-2008).

I have a mapping table names with the following columns

ID DisplayName

What I want to do is first
SELECT [ID] FROM [names] WHERE [DisplayName] = 'chuck';

BUT, if the name ‘chuck’ doesn’t exist in the database, I would like to create it, and return the auto incremented ID.

I was wondering if SQL had some built in way of doing this in an easy way, or if I have to go the long route?

long route being something like this

SELECT COUNT(ID) AS count, ID FROM names WHERE DisplayName='chuck'
IF(count > 0)
    SELECT ID as ReturnID;
ELSE
    BEGIN
    INSERT INTO names(DisplayName) values('chuck');
    SELECT scope_identity() as ReturnID;
    END

I didn’t test that last statement, but I assume the long way would be something like that. If there is no built in way, I’d appreciate it if someone could simply correct that statement(as I’m sure it isn’t completely correct).

  • 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-30T21:21:49+00:00Added an answer on May 30, 2026 at 9:21 pm

    You should take care about transactions as well:

    set XACT_ABORT on
    begin tran
    
    declare @ID int
    
    select @ID = ID from names with (holdlock, updlock) WHERE DisplayName='chuck'
    
    if @@rowcount = 0
    begin
      INSERT INTO names(DisplayName) values('chuck');
      set @ID = scope_identity();
    end
    
    select @ID as ReturnID;
    
    commit tran
    

    Note the usage of table hints – holdlock and updlock. They prevent another thread from executing exactly the same query and creating the row a second time. For more information look for isolation, synchronization, deadlocks, concurrent updates.

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

Sidebar

Related Questions

Alright, quick question. A server is running in Eastern Time. PHP program needs to
Alright, I have been doing the following (variable names have been changed): FileInputStream fis
Alright, here's a quick explanation of what I am doing: I have a website
Alright, so here is the property I have public List<String> names{ get{ lock(_names) return
Alright so here is the question. I have a user class which contains a
Alright, here's what I'm trying to do. I'm attempting to write a quick build
Alright, here is my problem i'm trying to solve. I have an index page
Alright here is what I am attempting to do. I have a form written
Alright I have two problems. I'm using AVAudioPlayer to play a simple audio file
Alrighty, coding in Perl and just had a quick question. I have class created

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.