Rahul Chavan
Write a simple stored procedure code with Parameter?
By Rahul Chavan in Databases & DBA on Apr 07 2016
  • Ashish Srivastava
    Dec, 2017 26

    CREATE PROC PROC_Name ( @EMPID BIGINT, @EMPNAME VARCHAR(50) ) AS BEGIN INSERT INTO EMPLOYEE(EMPID,EMPNAME) VALUES (@EMPID,@EMPNAME) END

    • 1
  • Shalu Shalini
    Apr, 2017 1

    create or replace procedure projprssample (rs out sys_refcursor) is begin open rs for select * from users where rownu<=10; end;

    • 0
  • Shalu Shalini
    Apr, 2017 1

    create or replace procedure projprssample (rs out sys_refcursor) is begin open rs for select * from users where rownu<=10; end;

    • 0
  • Rahul Chavan
    Apr, 2016 7

    Create Procedure GetCustomerInfoById ( @CustomerId INT ) As BEGIN SELECT * FROM Customer where CustomerId=@CustomerId END

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS