Warning: array_search() [function.array-search]: Wrong datatype for second argument in /home/content/o/n/t/ontheplan23/html/andrewinfoservices/dynamicdemo/sp_structure.php on line 6
Andrew Info Services - stored procedure structure
stored procedure structure

DELIMITER $$

DROP PROCEDURE IF EXISTS `dbname`.`sp_sample` $$


CREATE PROCEDURE `dbname`.`sp_sample` ()
SQL SECURITY DEFINER or SQL SECURITY INVOKER
BEGIN

........... SQL code goes here ...........

END $$

DELIMITER ;