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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T23:11:17+00:00 2026-05-16T23:11:17+00:00

I know that within a trigger – at least for SQL Server – one

  • 0

I know that within a trigger – at least for SQL Server – one should never assume that the inserted table has just one row, which means SQL like this in a trigger is usually bad:

select @UserID = ID from inserted

But out of curiosity, can a set of INSERT statements ever result in an inserted table of more than one row? I know it’s easy enough with an UPDATE, but from my tests I can’t simulate a similar result for INSERTs. I’ve tried sending across sets of inserts before sending the batch terminator, e.g:

insert into TriggerTest (col2) select 'a'
insert into TriggerTest (col2) select 'b'
insert into TriggerTest (col2) select 'c'
go

And also wrapping them in transactions:

begin tran
insert into TriggerTest (col2) select 'a'
insert into TriggerTest (col2) select 'b'
insert into TriggerTest (col2) select 'c'
commit

But it will always result in the trigger fired 3 times with an inserted table of 1 row, and never one time with an inserted table of 3 rows.

That completely makes sense to me (they are 3 separate statements after all), and I don’t need to actually do it, I’m just wondering if INSERTS alone can ever behave differently to this.

Edit: this is a dumb question: of course it can, when inserting a result set!

insert into TriggerTest (col2) select 'a' union select 'b'

… or any other sort of set.

Forgive me, it is almost 3AM here. I’ll leave this question here for people who should know better anyway.

  • 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-16T23:11:18+00:00Added an answer on May 16, 2026 at 11:11 pm

    try

    insert into TriggerTest (col2) 
    select 'a'
    union 
    select 'b'
    union
    select 'c'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class library that has settings within an app.config. I know that
I know that I can run an external Javascript file from within HTML with
I know that it's bad to run any kind of GUI widget from within
I know that Phonegap has an event for back button, but it's only available
I know that this sort of question has been asked here before, but still
I'm trying to write a trigger within SQL, and the code within needs to
I am struggeling to create a trigger within MySQL, so that everytime I am
I know that in ASP.NET (talking about 2.0 here primarily) one can set a
Before you start reading... You should know that there are many questions below... I
I know that if port 443 is open that means the remote host supports

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.