You are on page 1of 1

What is Stored Procedure/Procedure /SP ?

It is a PLSQL block which work as a intermediator between Application front end


and the Database .
It is used to reduce the network traffic and make application ease of access.
All the Stored Procedure Variable are declared by @ Symbol
My SP Code is Given Below :
-----------------------------CREATE PROCEDURE [dbo].[LoginSOP]
@user_name varchar(50),
@pass varchar(50)
AS
begin
SELECT * from dbo.Login where username = @user_name and pass = @pass
end

You might also like