OiO.lk Blog SQL How Stored Procedures in SQL Called?
SQL

How Stored Procedures in SQL Called?


I now how to create the procedure but do not know how to call the procedure

this is what I have done. Created the procedure :

CREATE PROCEDURE SelectAllCustomers
AS
SELECT * FROM Customers
GO;

I have created it but next thing how to call the procedure, directly in the SQL console?



You need to sign in to view this answers

Exit mobile version