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