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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T15:48:13+00:00 2026-05-13T15:48:13+00:00

I know my title isn’t exactly worded well, so let me clarify. I’m using

  • 0

I know my title isn’t exactly worded well, so let me clarify. I’m using SQL Server 2005 Express.

I have a table that basically stores a “template,” if you will. Using a car as an example, the fields would be something like:

TemplateID
Color
Make
Model

Now, I have another table that represents an “instance” of the template. It contains all the fields of the template table plus some fields that are unique to an instance:

InstanceID
VIN
SerialNumber
Color
Make
Model

I am writing a stored procedure to insert a new row into the “Instance” table. This stored procedure will take input parameters for “VIN” and “SerialNumber,” but I want it to copy “Color”, “Make”, and “Model” from the appropriate “Template.” The template is located by the “TemplateID,” which is already known.

I am looking for advice on how to write this stored procedure. It would be simple if it weren’t for the fact that these tables contain 100+ fields (I didn’t design them but I’m stuck using them.) I would like to do something like:

INSERT INTO Instance(VIN, SerialNumber, "EverythingElse") 
VALUES (@VIN, @SerialNumber, SELECT * FROM Template WHERE TemplateID = 1)

In other words, I only want to supply (through parameters) those fields not stored in the “Template” and copy everything else from the template. Is anything like this possible without hand coding for every field?

  • 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-13T15:48:13+00:00Added an answer on May 13, 2026 at 3:48 pm

    Just do a INSERT INTO and use a SELECT statement instead of a values statement.

    INSERT INTO Instance(VIN, SerialNumber, a, b, c) 
    SELECT @VIN, @SerialNumber, a, b, c FROM Template WHERE TemplateID = 1;
    

    You really don’t want to use *. You can have SQL Server Managemnt Studio script a SELECT statement for you and it will generate the field names so you don’t have to type them.

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

Sidebar

Related Questions

I know the question title isn't the best. Let me explain. I do a
I know the title isn't very elaborate, but I have tried this multiple times
Well, i know the title isn't very specific, but i couldn't find a better
Apologies if the Topic title isn't accurate, I didn't really know how to express
well, i know the title isn't the best, but i'll be as clear as
I know the title isn't very clear. I'm new to PHP, so there might
I don't know which title I should use for this question. I have a
World's most convuluted title I know, an example should explain it better. I have
I know the title isn't informative at all, but I had no idea how
I have a header/title bar that isn't resizing the way I want it 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.