mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 02:57:36 +00:00
Latest
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
DELIMITER ;;
|
||||
CREATE DEFINER=`root`@`%` PROCEDURE `sp_Program_GetByDistrictId`(
|
||||
IN p_id_school_district CHAR(36)
|
||||
)
|
||||
BEGIN
|
||||
SELECT
|
||||
id_program,
|
||||
id_school_district,
|
||||
name,
|
||||
description,
|
||||
created_at
|
||||
FROM program
|
||||
WHERE id_school_district = p_id_school_district
|
||||
ORDER BY name;
|
||||
END;;
|
||||
DELIMITER ;
|
||||
Reference in New Issue
Block a user