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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T01:09:35+00:00 2026-05-30T01:09:35+00:00

The example will give a brief explanation of what i’m talking about: AFTER INSERT,UPDATE

  • 0

The example will give a brief explanation of what i’m talking about:

 AFTER INSERT,UPDATE
 IF (This.Active = 1) 
      BEGIN
         UPDATE Table2 SET AllActive = 1 WHERE This.ID = Table2.ID
      END
 ELSE
      BEGIN
         UPDATE Table2 SET AllActive = 0 WHERE This.ID = Table2.ID
      END

I’m using this because that’s what i’m looking to do.

Do Triggers have a this like javascript?

If not, What’s the next best thing?

  • 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-30T01:09:39+00:00Added an answer on May 30, 2026 at 1:09 am

    One common misconception about triggers in SQL Server: they are NOT fired per row affected – but by statement.

    And therefore, when you have a statement that inserts or updates several rows, your Inserted (and/or Deleted) pseudo tables in the trigger will contain multiple rows. Do NOT assume you’re dealing with a single row! Such a trigger will fail sooner or later

    So in your case, you would probably want to write something like this:

      UPDATE t 
      SET AllActive = i.Active
      FROM Inserted i
      INNER JOIN dbo.Table2 AS t 
      ON t.ID = i.ID
    

    This will update all rows in the Table2 table and set the AllActive column to the value of Active, for each row that’s contained in the Inserted table (contains the newly inserted rows, and the new values for the updated rows)

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

Sidebar

Related Questions

i have this example: while (...){ echo test:'.$a.',- group:'.$m.' } this will give me
i will give an example of the problem i have. My XML is like
I need a regex that will give me the following results from each example
For example, here on stack overflow the URL https://stackoverflow.com/questions/tagged/javascript+php will give you all questions
The title is very descriptive. Just in case, I will give an example: START
Example: /** * This function will determine whether or not one string starts with
I will give very simple example. class Implementation: IMyInterface { string mArg; public Implementation(string
I have a Java date object: Date currentDate = new Date(); This will give
How can code be resource? I will give you an example: I want to
For simplicity, I will give a quick example of what i am trying to

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.