mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 02:57:36 +00:00
latest
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
DELIMITER ;;
|
||||
CREATE DEFINER=`root`@`%` PROCEDURE `sp_ProgressEvent_GetByGoalId`(IN p_id_goal CHAR(36))
|
||||
BEGIN
|
||||
SELECT
|
||||
vc.`progressEventId`,
|
||||
vc.`content`,
|
||||
vc.`createdAt`,
|
||||
vc.`createdByName`
|
||||
FROM `v_progress_event_card` vc
|
||||
WHERE vc.`goalId` = p_id_goal
|
||||
ORDER BY vc.`createdAt` DESC;
|
||||
END;;
|
||||
DELIMITER ;
|
||||
Reference in New Issue
Block a user