Question: Compare and explain the difference between the two statements. Statement 1: CREATE PROCEDURE Insert_data AS INSERT INTO StudentTest VALUES ('1', 'Peter', 'Gallert', 'Male') EXECUTE Insert_data
Compare and explain the difference between the two statements.
Statement 1:
CREATE PROCEDURE Insert_data
AS
INSERT INTO StudentTest VALUES ('1', 'Peter', 'Gallert', 'Male')
EXECUTE Insert_data
Statement 2:
BEGIN
INSERT INTO StudentTest VALUES ('1', 'Peter', 'Gallert', 'Male')
END
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
