Update to SQL objects and CSS adjustment

This commit is contained in:
ivan-pelly
2026-03-03 11:48:10 -08:00
parent 3453096f89
commit 5b7bd8cfb4
11 changed files with 51 additions and 87 deletions
+7 -8
View File
@@ -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 ;