GitBucket
Toggle navigation
Sign in
Files
Branches
1
Releases
Issues
Pull requests
Labels
Priorities
Milestones
Wiki
Fork
: 0
root
/
java_learning
Transfer to URL with SHA
Find file
Newer
Older
tree:
5bbe3fc401
Switch branches
×
master
java_learning
/
stored
/ ensyu08.sql
himeno
on 2 Aug 2019
107 bytes
init
Raw
Blame
History
CREATE PROCEDURE plus(@num1 INT, @num2 INT, @ans INT OUTPUT) AS BEGIN SET @ans = @num1 + @num2; END;