mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 09:57:37 +00:00
12 lines
297 B
SQL
12 lines
297 B
SQL
DELIMITER ;;
|
|
CREATE DEFINER=`root`@`%` PROCEDURE `sp_ProgressEventBenchmark_GetByEventId`(
|
|
IN p_id_progress_event CHAR(36)
|
|
)
|
|
BEGIN
|
|
SELECT
|
|
peb.id_benchmark AS benchmarkId
|
|
FROM progress_event_benchmark peb
|
|
WHERE peb.id_progress_event = p_id_progress_event;
|
|
END;;
|
|
DELIMITER ;
|