How to use a result set returned by another stored procedure in a stored procedure

Source: Internet
Author: User
The most common processing process: 1. Creates a temporary table #tmp that is compatible with the return result set of the target stored procedure procedure_name (compatible, not necessarily the same). CREATE TABLE #tmp ([Columns_list]) 2. Executes the stored procedure and inserts the return result set of the stored procedure into the temporary table. INSERT into #tmp EXEC procedure_name @parameters_var
3. You can now use (filter, change, or retrieve) #tmp了. ^_^ SELECT @querystring = columns_list from #tmp
4. Don't forget to clear the temporary table at the end. DROP TABLE #tmp Original address: http://www.2cto.com/database/201210/162009.html

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.