can we use single stored Procedure to execute multiple select commands to select values from multiple table and store all the tablevalues in a single dataset.?can anyone provide the sample SP of wat i said above?
Just write as many queries as you want
CREATE PROCEDURE MySP AS BEGIN select col1, col2 from table1 select col1, col2 from table2 END GO
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.