mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 16:57:35 +00:00
17 lines
356 B
SQL
17 lines
356 B
SQL
DELIMITER ;;
|
|
CREATE DEFINER=`root`@`%` PROCEDURE `sp_Student_GetById`(IN p_id_student CHAR(36))
|
|
BEGIN
|
|
SELECT
|
|
studentId,
|
|
identifier,
|
|
nextIepDate,
|
|
lastEntryDate,
|
|
goalCount,
|
|
progressEventCount,
|
|
benchmarkCount
|
|
FROM v_student_card
|
|
WHERE studentId = p_id_student
|
|
LIMIT 1;
|
|
END;;
|
|
DELIMITER ;
|