Home > Database > Mysql Tutorial > mySql存储过程的结构_MySQL

mySql存储过程的结构_MySQL

WBOY
Release: 2016-06-01 13:18:26
Original
1010 people have browsed it

bitsCN.com

无参数的存储过程

CREATE PROCEDURE P_XSRBB()BEGIN		DECLARE VP1 VARCHAR(20);		SET VP1=4;SELECT VP1 FROM DUAL;END;CALL P_XSRBB();
Copy after login
带输入参数的存储过程
DROP PROCEDURE IF EXISTS P_XSRBB;CREATE PROCEDURE P_XSRBB(in vp2 INT)BEGIN		DECLARE VP1 VARCHAR(20);		SET VP1=4;SELECT VP2 FROM DUAL;END;CALL P_XSRBB(3434);
Copy after login
bitsCN.com
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template