initial creation
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
use presidents;
|
||||
DELIMITER //
|
||||
CREATE PROCEDURE pres_full_name
|
||||
(IN term_num int)
|
||||
BEGIN
|
||||
select concat(fname, ' ', lname)
|
||||
from presidents
|
||||
where num = term_num;
|
||||
END //
|
||||
DELIMITER ;
|
||||
Reference in New Issue
Block a user