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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T03:24:39+00:00 2026-06-16T03:24:39+00:00

I have a stored procedure that I want to use in a SELECT like

  • 0

I have a stored procedure that I want to use in a SELECT like below but I get an error.

The stored procedure’s output is a table with one column of type int

select * from users where resCode in (EXEC getUserResselers 1)

-- stored procedure
create procedure getUserResselers
    @userCode int
as
    ;WITH Directories AS (SELECT  code FROM Resseler WHERE code =(select resselerCode from Users where code=@userCode)
    UNION ALL SELECT d.code FROM Resseler d INNER JOIN Directories p ON  d.parent = p.code)
        SELECT  * FROM    Directories d
  • 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-16T03:24:40+00:00Added an answer on June 16, 2026 at 3:24 am

    Direct selection from a stored procedure is not supported. However, this type of operation is a good candidate for a table-valued user-defined function, which might look something like:

    Note that you have misspelled “resellers”. I’ve left the misspelling so that you could test with your existing schema.

    CREATE FUNCTION getUserResselers
    (
        @UserCode INT
    )
    RETURNS TABLE AS
    RETURN(
        WITH Directories AS (
    
           SELECT  code FROM Reseller WHERE code = (select resselerCode from Users where code=@userCode)
           UNION ALL SELECT d.code FROM Resseler d INNER JOIN Directories p ON  d.parent = p.code
        )
        SELECT  * FROM   Directories
    )
    

    You could then include a join to the function in your query, or you could continue to use IN, which should be something like:

    select * from users where resCode in (SELECT Code FROM getUserResselers(1));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this stored procedure that I want to use for my SAP crystal
I have a stored procedure that I want to call from within another, and
I have a stored procedure that has the parameter: @desk VARCHAR(50) I want to
I want to be able to have a Stored Procedure that can only be
I have a MYSQL stored procedure SP1() that returns a result set. I want
I have a stored procedure that has this line: SET @SQL = 'SELECT path,title,tags
I have a stored procedure that uses this select statement: SELECT dbo.VendorProgram.id, dbo.VendorProgram.CODE, dbo.Programs.ProgramName
I have an Oracle stored procedure that returns a BLOB in an output parameter:
Helo, My question is I have one Stored Procedure in SQL Server that returns
I have a stored procedure in my database that takes a table value parameter,

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.