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

  • Home
  • SEARCH
  • 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 8023839
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T22:41:00+00:00 2026-06-04T22:41:00+00:00

Is it possible to do something like this in SQL Server: INSERT INTO MyTable

  • 0

Is it possible to do something like this in SQL Server:

INSERT INTO MyTable (Col1,Col2,Col3,Col4,Col5,Col6,Col7) VALUES

SELECT Col1 FROM Func1(),

SELECT Col2 FROM Func2(),

SELECT Col3,Col4,Col5 FROM Func3(),

SELECT Col6 FROM Func4(),

SELECT Col7 FROM Func5()

I have a large number of functions which return one-value results and one function which returns 3 columns. I would like to insert all of this data into one row of a table?

I can see the function returning muliple columns as possibly being a problem?

  • 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-04T22:41:01+00:00Added an answer on June 4, 2026 at 10:41 pm

    If all functions return just one row…

    INSERT INTO
      MyTable (Col1,Col2,Col3,Col4,Col5,Col6,Col7)
    SELECT
      f1.col1, f2.col2, f3.col3, f3.col4, f3.col5, f4.col6, f5.col7
    FROM
      (SELECT Col1 FROM Func1())           AS f1
    CROSS JOIN
      (SELECT Col2 FROM Func2())           AS f2
    CROSS JOIN
      (SELECT Col3,Col4,Col5 FROM Func3()) AS f3
    CROSS JOIN
      (SELECT Col6 FROM Func4())           AS f4
    CROSS JOIN
      (SELECT Col7 FROM Func5())           AS f5
    

    If the functions return more than one row, you need to join them in the normal way; with predicates that determine which left row gets joined to which right row.

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

Sidebar

Related Questions

Is it possible to do something like this: INSERT INTO table(col1, col2) VALUES(something_from_another_table, value);
Is it possible to do something like this in sql server 2005? WITH tmpTable
I'm working on SQL Compact 3.5 (Microsoft). Is something like this possible? ::- ).
In SQL Server , it is possible to insert rows into a table with
I've got a SQL statement in SQL Server 2005 that looks something like this:
Is it possible to do something like this? public function something() { $thisMethodName =
is it possible to do something like this in JSTL: <div class=firstclass<c:if test='true'> someclass</c:if>>
Is it possible to accomplish something like this using linqtosql? select * from table
is it possible to do something like this in PHP 5.2.1? abstract class Test
Is it possible to use something like this wrapper with fluent configuration? http://jeffreypalermo.com/blog/use-this-nhibernate-wrapper-to-keep-your-repository-classes-simple/ If

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.