mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 02:57:36 +00:00
18 lines
368 B
SQL
18 lines
368 B
SQL
DELIMITER ;;
|
|
CREATE DEFINER=`root`@`%` PROCEDURE `sp_Student_GetAll`()
|
|
DELIMITER ;;
|
|
CREATE DEFINER=`root`@`%` PROCEDURE `sp_Student_GetAll`()
|
|
BEGIN
|
|
SELECT
|
|
id_student,
|
|
id_program,
|
|
identifier,
|
|
program_year,
|
|
enrollment_date,
|
|
expected_grad,
|
|
created_at
|
|
FROM student
|
|
ORDER BY id_student;
|
|
END;;
|
|
DELIMITER ;
|