8
Reply

What is an Stored procedure in SQL?

sudeep s kanakagiri

sudeep s kanakagiri

Oct 08, 2013
2.1k
1

    A stored procedure is a group of Transact-SQL statements compiled into a single execution plan.

    Joe Wilson
    July 20, 2015
    1

    A stored procedure is a group of Transact-SQL statements compiled into a single execution plan.

    Kml Surani
    May 13, 2015
    1

    In simple terms Stored Procedures are a Group of queries which runs simultaneously based on their call , SP are capable of doing complex queries with easily manageable structure with Looping , Conditions , functions etc .

    Manav Pandya
    January 17, 2018
    0

    Stored Procedures are a batch of SQL statements that can be executed in a couple of ways. Most major DBMs support stored procedures; however, not all do. You will need to verify with your particular DBMS help documentation for specifics.To create a stored procedure the syntax is fairly simple:CREATE PROCEDURE . AS So for example:CREATE PROCEDURE Users_GetUserInfo@login nvarchar(30)=nullASSELECT * from [Users]WHERE ISNULL(@login,login)=login

    Ramesh Maruthi
    August 11, 2014
    0

    When we write a query again and again then we write that query as a stored procedure and we call that stored procedure name.

    Munesh Sharma
    April 13, 2014
    0

    A SP is a group of sql statement for perform some job in database. To use SP at the place of query is very good and som ADV also..SP is fast then Query.. Security...example:creare procedure student (@name varchar(50) ) as begin select * from student_master where name=@name end

    Mukesh Kumar Tiwari
    November 09, 2013
    0

    A stored procedure is a group of Transact-SQL statements compiled into a single execution plan.

    Phani Kumar
    October 10, 2013
    0

    A stored procedure is a group of Transact-SQL statements compiled into a single execution plan.

    Phani Kumar
    October 10, 2013
    0