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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T10:36:55+00:00 2026-05-15T10:36:55+00:00

I wish to Insert or Update a row in a table – so I

  • 0

I wish to Insert or Update a row in a table – so I wish to try and use the MERGE syntax. My problem is that my data (to insert/update) exists in a variable table. I’m not sure how to write the correct syntax for the insert/update part.

Here’s my pseduo code :-

-- Here's the Variable Table ... and not it has not PK.
DECLARE @PersonId INTEGER

DECLARE @variableTable TABLE (
    @SomeScore DECIMAL(10,7),
    @SomeAverage DECIMAL(10,7),
    @SomeCount INTEGER)

-- Insert or Update
MERGE INTO SomeTable
WHERE PersonId = @PersonId
WHEN MATCHED THEN
    UPDATE
    SET PersonScore = ??????????
        PersonAverage = ???????
        PersonCount = ????????
WHEN NOT MATCHED THEN
    INSERT(PersonId, PersonScore, PersonAverage, PersonCount)
    VALUES(@PersonId, ????, ?????, ????)

.. and I’m not sure how I make sure the UPDATE correctly only updates 1 row (ie… does that need a WHERE clause?)

Finally, I based my this post on this SO question.

  • 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-15T10:36:56+00:00Added an answer on May 15, 2026 at 10:36 am

    Yes it’s possible. Your syntax was off though. The below seems to work. I have kept @PersonId as a separate scalar variable outside the table variable as that’s how you have it in your question. And I have assumed that the Primary Key of SomeTable is PersonId

    DECLARE @PersonId INT
    
    DECLARE @variableTable TABLE (
        SomeScore DECIMAL(10,7),
        SomeAverage DECIMAL(10,7),
        SomeCount INTEGER
        )
    
    -- Insert or Update
    MERGE SomeTable AS T
    USING @variableTable AS S
    ON (T.PersonId = @PersonId) 
    
    WHEN MATCHED THEN
        UPDATE
        SET T.PersonScore = SomeScore,
            T.PersonAverage = SomeAverage,
            T.PersonCount = SomeCount
    WHEN NOT MATCHED  BY TARGET THEN
        INSERT(PersonId, PersonScore, PersonAverage, PersonCount)
        VALUES(@PersonId, SomeScore, SomeAverage, SomeCount);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table that I wish to update (or insert if no previous
I'm using a stored procedure to update\insert data into a table using MERGE. One
I wish to DELETE the data from a table before performing an INSERT INTO,
I wish to insert many rows of data into a table in SqlServer and
I know how to insert a new row into a table that has a
I wish to do a serial, logging insert of bulk data from one table
I wish to use sp_start_job to start a job from within an insert trigger
I wish fetch data in a XML file, where Tag is a variable.. My
I have a table where I wish to update some of the rows. All
I wish to migrate some data from a single table into these new THREE

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.