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,15 +2,14 @@ DELIMITER ;;
CREATE DEFINER=`root`@`%` PROCEDURE `sp_Student_GetById`(IN p_id_student CHAR(36))
BEGIN
SELECT
id_student,
id_program,
studentId,
identifier,
program_year,
enrollment_date,
expected_grad,
created_at
FROM student
WHERE id_student = p_id_student
expectedGradDate,
lastEntryDate,
goalCount,
progressEventCount
FROM v_student_card
WHERE studentId = p_id_student
LIMIT 1;
END;;
DELIMITER ;