mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 06:27:37 +00:00
Update to SQL objects and CSS adjustment
This commit is contained in:
@@ -2,14 +2,13 @@ DELIMITER ;;
|
||||
CREATE DEFINER=`root`@`%` PROCEDURE `sp_Student_GetAll`()
|
||||
BEGIN
|
||||
SELECT
|
||||
id_student,
|
||||
id_program,
|
||||
studentId,
|
||||
identifier,
|
||||
program_year,
|
||||
enrollment_date,
|
||||
expected_grad,
|
||||
created_at
|
||||
FROM student
|
||||
ORDER BY id_student;
|
||||
expectedGradDate,
|
||||
lastEntryDate,
|
||||
goalCount,
|
||||
progressEventCount
|
||||
FROM v_student_card
|
||||
ORDER BY studentId;
|
||||
END;;
|
||||
DELIMITER ;
|
||||
|
||||
Reference in New Issue
Block a user