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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T17:33:58+00:00 2026-06-04T17:33:58+00:00

I have the following insert trigger, which is essentially writing a duplicate row from

  • 0

I have the following insert trigger, which is essentially writing a duplicate row from an insert to a QA/QC table (IAW business requirement).

  INSERT dbo.TBL_LOCATIONS(
  Column1, Column2
  )
  SELECT 
  a.Column1,  a.Column2
  From
  (  
    SELECT  
   Column1,   Column2
     FROM inserted  
  ) AS a 
  end
GO

What I’m trying to do is populate [Column1] in tbl_locations with a range of values based on a logic test of the possible values being inserted in the insert table,e.g. if [a.Column1] is “1”, then insert “Some string” in tbl_locations.Column1, if [a.Column1] is “2”, then insert “Some other string” in tbl_locations.Column1,if [a.Column1] is “3”, then insert “Yet another string” in tbl_locations.Column1…

  • 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-04T17:34:00+00:00Added an answer on June 4, 2026 at 5:34 pm

    Alternatively, you could try something like this:

    INSERT INTO dbo.TBL_LOCATIONS (Column1, Column2)
    SELECT
      s.Description,
      i.Column2
    FROM inserted i
    LEFT JOIN (
      VALUES
        (1, 'Polygon: Determination Made by GPS Survey'  ),
        (2, 'Polygon: Determination Derived from NWI'    ),
        (3, 'Polygon: Determination Made by Other Means' ),
        (4, 'Polygon: Legal Jurisdictional Determination')
    ) s (ID, Description)
    ON i.Column1 = s.ID
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Question is following: I have an oracle trigger after row insert. From trigger, I
I have the following query to insert into a table BULK INSERT tblMain FROM
I have created the following trigger for insert in the deleted user table the
I have the following query: INSERT INTO table (a, b, c) VALUES (NOW(), NOW()
I have the following query in VBA: DoCmd.RunSQL INSERT INTO table (value) VALUES ('example')
I have the following sample of data to insert into tables(from parent to child,
I have the following test-code: CREATE TABLE #Foo (Foo int) INSERT INTO #Foo SELECT
I have following trigger written for my application which gives me this error Msg
I have the following trigger on a table that redirects data and includes data
hi i have created a trigger which i want to update a table field

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.