Files
WinStudentGoalTracker/db/Objects/procedures/sp_Student_GetAll.sql
T
ivan-pelly b6b058f05e Latest
2026-02-27 18:29:11 -08:00

17 lines
314 B
SQL

DELIMITER ;;
CREATE DEFINER=`root`@`%` PROCEDURE `sp_Student_GetAll`()
BEGIN
SELECT
id_student,
id_program,
id_user,
identifier,
program_year,
enrollment_date,
expected_grad,
created_at
FROM student
ORDER BY id_student;
END;;
DELIMITER ;