Changed grad date to next iep date

This commit is contained in:
ivan-pelly
2026-03-11 19:48:16 -07:00
parent ec36d8842d
commit 7f91e2e557
25 changed files with 44 additions and 44 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ CREATE DEFINER=`root`@`%` PROCEDURE `sp_Student_Update`(
IN p_identifier VARCHAR(50),
IN p_program_year INT,
IN p_enrollment_date DATE,
IN p_expected_grad DATE
IN p_next_iep_date DATE
)
BEGIN
UPDATE student
@@ -12,7 +12,7 @@ BEGIN
identifier = COALESCE(p_identifier, identifier),
program_year = COALESCE(p_program_year, program_year),
enrollment_date = COALESCE(p_enrollment_date, enrollment_date),
expected_grad = COALESCE(p_expected_grad, expected_grad)
next_iep_date = COALESCE(p_next_iep_date, next_iep_date)
WHERE id_student = p_id_student;
SELECT ROW_COUNT() AS rows_affected;
END;;