mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 07:37:38 +00:00
18 lines
398 B
SQL
18 lines
398 B
SQL
DELIMITER ;;
|
|
CREATE DEFINER=`root`@`%` PROCEDURE `sp_ProgressEvent_GetById`(IN p_id_progress_event CHAR(36))
|
|
BEGIN
|
|
SELECT
|
|
id_progress_event,
|
|
id_student,
|
|
id_goal,
|
|
id_user_created,
|
|
content,
|
|
is_sensitive,
|
|
created_at,
|
|
updated_at
|
|
FROM progress_event
|
|
WHERE id_progress_event = p_id_progress_event
|
|
LIMIT 1;
|
|
END;;
|
|
DELIMITER ;
|