Wednesday, March 12, 2014

How to insert a stored procedure result into a table

INSERT INTO ExistedTableName
EXEC [dbo].[Storedprocedure]  @Param1


If we execute these statements the result of the stored procedure will be inserted into the table ExistedTableName.

No comments:

Post a Comment