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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T05:20:49+00:00 2026-06-13T05:20:49+00:00

I have a procedure called SELECT_DESCRIPTION that receives an id and returns a Description

  • 0

I have a procedure called SELECT_DESCRIPTION that receives an id and returns a Description field I need to show in my page.

Now I want to create a new procedure that having a number of ids coming from a select clause like this:

SELECT id FROM MYTABLE 

Can pass it to the SELECT_DESCRIPTION procedure so I can have the same number of descriptions

If I was using php I would be doing something like this:

$sql=”SELECT id FROM MYTABLE”;
$result = mysql_query($sql) //using mysql to make the example faster but TSQL is what I use
or die(mysql_error());  

while($row = mysql_fetch_array( $result )) {
    $newSql = "EXEC SELECT_DESCRIPTION @id = '$row[‘id’]'"; 
//do whatever with $newSql

}

But I need to use a procedure. Is is possible to do it? How can I do it?

Thanks a ton!

  • 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-13T05:20:50+00:00Added an answer on June 13, 2026 at 5:20 am

    So you’re wanting to do all of this in TSQL? Something like this would do it:

    DECLARE @tmp TABLE (tmpID INT IDENTITY, tblID INT)
    DECLARE @RecordCount INT,
    @LoopCount INT,
    @ID INT
    
    INSERT INTO @tmp SELECT id FROM MYTABLE
    SELECT @RecordCount = COUNT(*) FROM @tmp
    SET @LoopCount = 1
    
    WHILE @LoopCount <= @RecordCount
      BEGIN
    
      SELECT @ID = tblID FROM @tmp WHERE tmpID = @LoopCount
      EXEC SELECT_DESCRIPTION @ID
      SELECT @LoopCount = @LoopCount + 1
    
      END
    

    The @tmp table has an identity column that insures whatever data you’re running the loop on has consecutive row numbers (1, 2, 3, 4, etc).

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

Sidebar

Related Questions

I have a stored procedure called WEB_SEL_SECURITY_QUESTIONS in my sql database which returns a
I have a somewhat-long-running stored procedure being called from a PB application. I want
I have a situation where I have an Oracle procedure that is being called
I need a some stored procedure that called like: search('foo bar') makes a search
I have a stored procedure that is called by data collection system . The
I have a table called Events that I want to insert information to. Here
We have a stored procedure that returns DB encrypted columns decrypted via DecryptByKeyAutoCert(). This
I have a stored procedure that is called by another stored procedure ALTER PROCEDURE
I have a stored Procedure called Active and the code is: CREATE PROCEDURE dbo.Active
Scenario I have a stored procedure that takes a single parameter. I want 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.