mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 04:07:39 +00:00
13 lines
255 B
SQL
13 lines
255 B
SQL
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 ;
|