mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 09:57:37 +00:00
Database updates
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
DELIMITER ;;
|
||||
CREATE DEFINER=`root`@`%` PROCEDURE `sp_SchoolDistrict_GetAll`()
|
||||
BEGIN
|
||||
SELECT
|
||||
id_school_district,
|
||||
name,
|
||||
contact_email,
|
||||
created_at
|
||||
FROM school_district
|
||||
ORDER BY id_school_district;
|
||||
END;;
|
||||
DELIMITER ;
|
||||
Reference in New Issue
Block a user