RE: Nested Stored Procedure
- From: keyur joshi <keyurjoshi@xxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Sat, 17 May 2008 05:24:00 -0700
"Riddick1980" wrote:
Can I use a stored procedure as table inside a stored procedure?.
for eg. i have a stored procedure named QMENU and QNEWMENU
I want to use these two stored procedures in another stored procedure like:
CREATE PROCEDURE MENU(@roll1 as INT)
AS
BEGIN
SELECT * FROM QMENU;
UNION ALL;
SELECT * FROM QNEWMENU;
END
Thnx in advance,
- References:
- Nested Stored Procedure
- From: Riddick1980
- Nested Stored Procedure
- Prev by Date: RE: Why do I meet "Word breaking timed" out error
- Next by Date: RE: Nested Stored Procedure
- Previous by thread: Re: Nested Stored Procedure
- Next by thread: RE: Nested Stored Procedure
- Index(es):