Files
WinStudentGoalTracker/db/Objects/procedures/sp_Goal_GetAll.sql
T
2026-02-21 08:01:29 -08:00

18 lines
318 B
SQL

DELIMITER ;;
CREATE DEFINER=`root`@`%` PROCEDURE `sp_Goal_GetAll`()
BEGIN
SELECT
id_goal,
id_goal_parent,
id_student,
id_user_created,
title,
description,
category,
created_at,
updated_at
FROM goal
ORDER BY id_goal;
END;;
DELIMITER ;