MySQL Store Procedure

drop procedure if exists _SP; DELIMITER // create procedure _SP( xClave varchar(8) ) begin Select 1; end // Delimiter ; call _SP
Brings a snippet for a store procedure in MySQL 5.x

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.