mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 04:07:39 +00:00
Database updates
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
DELIMITER ;;
|
||||
CREATE DEFINER=`root`@`%` PROCEDURE `sp_Program_GetById`(IN p_id_program CHAR(36))
|
||||
BEGIN
|
||||
SELECT
|
||||
id_program,
|
||||
id_school_district,
|
||||
name,
|
||||
description,
|
||||
created_at
|
||||
FROM program
|
||||
WHERE id_program = p_id_program
|
||||
LIMIT 1;
|
||||
END;;
|
||||
DELIMITER ;
|
||||
Reference in New Issue
Block a user