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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T14:00:50+00:00 2026-05-25T14:00:50+00:00

Specifically I have a function with the following signature: CREATE FUNCTION [dbo].[GetLevelData]() RETURNS @level

  • 0

Specifically I have a function with the following signature:

CREATE FUNCTION [dbo].[GetLevelData]()
RETURNS @level TABLE (
    [Level]                 INT PRIMARY KEY IDENTITY,
    [Source Column Name]    AS '{Option Level ' + CAST([Level] AS VARCHAR(10)) + '}',
    [Parent Column Name]    AS '[Parent_L' + CAST([Level] AS VARCHAR(10)) + '_Option]'
)

How can I insert rows into it without modifying the definition of the table?

  • 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-25T14:00:50+00:00Added an answer on May 25, 2026 at 2:00 pm

    Within the body of the function definition, use

    INSERT @level DEFAULT VALUES;
    

    to create a new row in the to-be-returned table.

    To do a number of rows at once, you can do this:

    CREATE FUNCTION [dbo].[GetLevelData]()
    RETURNS @level TABLE (
        [Level]                 INT PRIMARY KEY IDENTITY,
        [Source Column Name]    AS '{Option Level ' + CAST([Level] AS VARCHAR(10)) + '}',
        [Parent Column Name]    AS '[Parent_L' + CAST([Level] AS VARCHAR(10)) + '_Option]'
    )
    AS
    BEGIN
        WHILE ISNULL(SCOPE_IDENTITY(), 0) < 5    -- to end up with 5 rows
            INSERT @level DEFAULT VALUES
    
        RETURN
    END
    

    which is a bit sneaky but does work

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

Sidebar

Related Questions

I have some questions about Perl's map function. Specifically: How does %hash = map
I have the following function which limits the amount of characters you can enter
I have to the following function that I would like to modify so that
In my class, AController , I have the following method: private function determineRequestMethod() {
I have the following, very simple html page: <html> <head> <script type="text/javascript"> function alertSelection()
I have a table that includes the following column: mytable <- data.frame(beta_0 = c(1,2,3)
I have the following function for walking around edges of the graph of my
I have the following function: function ypdiff = ypdiff(t,y) a = 0.01; b =
I have seen conflicting advice on whether the following code is better def function():
I have the following extremely basic $.ajax function: function doAjax(url, args){ var retVal =

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.