mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 08:47:42 +00:00
55 lines
1.1 KiB
SQL
55 lines
1.1 KiB
SQL
DELIMITER ;;
|
|
CREATE DEFINER=`root`@`%` PROCEDURE `sp_Goal_Insert`(
|
|
IN p_id_goal CHAR(36),
|
|
IN p_id_goal_parent CHAR(36),
|
|
IN p_id_student CHAR(36),
|
|
IN p_id_user_created CHAR(36),
|
|
IN p_description TEXT,
|
|
IN p_category VARCHAR(255),
|
|
IN p_baseline TEXT,
|
|
IN p_target_completion_date DATE
|
|
)
|
|
BEGIN
|
|
INSERT INTO goal
|
|
(
|
|
id_goal,
|
|
id_goal_parent,
|
|
id_student,
|
|
id_user_created,
|
|
description,
|
|
category,
|
|
baseline,
|
|
target_completion_date,
|
|
created_at,
|
|
updated_at
|
|
)
|
|
VALUES
|
|
(
|
|
p_id_goal,
|
|
p_id_goal_parent,
|
|
p_id_student,
|
|
p_id_user_created,
|
|
p_description,
|
|
p_category,
|
|
p_baseline,
|
|
p_target_completion_date,
|
|
UTC_TIMESTAMP(),
|
|
UTC_TIMESTAMP()
|
|
);
|
|
SELECT
|
|
id_goal,
|
|
id_goal_parent,
|
|
id_student,
|
|
id_user_created,
|
|
description,
|
|
category,
|
|
baseline,
|
|
target_completion_date,
|
|
created_at,
|
|
updated_at
|
|
FROM goal
|
|
WHERE id_goal = p_id_goal
|
|
LIMIT 1;
|
|
END;;
|
|
DELIMITER ;
|