Learn To Program
Increase Your Knowlegde and Build Your Skill!
Pages
(Move to ...)
Home
Me
▼
Saturday, September 25, 2010
Stored Procedure Example
This procedure just for assignment an "a" value to "b":
mysql> create procedure boo( in a int, out b int)
> begin
> select a into b;
> end;
> //
mysql> call boo(12, @c)//
mysql> select @c//
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment