mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 02:57:36 +00:00
Added Goals fields
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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 ;
|
||||
Reference in New Issue
Block a user