61. Syntax for a Stored Procedure is
Answers
Answered by
0
Explanation:
The syntax to create a stored procedure in SQL Server (Transact-SQL) is: CREATE { PROCEDURE | PROC } [schema_name.]
The CREATE PROCEDURE SQL command is used to create a procedure, followed by a SP name and its parameters. The BEGIN and END area is used to define the query for the operation. This is where you will write a select, update, insert, or delete querie
Similar questions