Answers for "sql server spn"

SQL
0

sp in sql server

Stored procedure
A sp is group of T-SQL statement. If you have any kind of situation, where you are writing the 
same query over and over again, you can save that specific query as a 
stored procedure and then just call by it's name. Basically wrapped this query into sp, and just call that sp.

e.g.
CRETAE PROCEDURE Procedure_Name
AS 
BEGIN
  SQL Statement
END
Posted by: Guest on June-19-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language