mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 04:07:39 +00:00
Update to SQL objects and CSS adjustment
This commit is contained in:
@@ -2,17 +2,15 @@ DELIMITER ;;
|
||||
CREATE DEFINER=`root`@`%` PROCEDURE `sp_Goal_GetById`(IN p_id_goal CHAR(36))
|
||||
BEGIN
|
||||
SELECT
|
||||
id_goal,
|
||||
id_goal_parent,
|
||||
id_student,
|
||||
id_user_created,
|
||||
goalId,
|
||||
goalParentId,
|
||||
studentId,
|
||||
title,
|
||||
description,
|
||||
category,
|
||||
created_at,
|
||||
updated_at
|
||||
FROM goal
|
||||
WHERE id_goal = p_id_goal
|
||||
progressEventCount
|
||||
FROM v_goal_card
|
||||
WHERE goalId = p_id_goal
|
||||
LIMIT 1;
|
||||
END;;
|
||||
DELIMITER ;
|
||||
|
||||
Reference in New Issue
Block a user