mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 11:07:41 +00:00
Added persistent prompt to student progress report
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
DELIMITER ;;
|
||||
CREATE DEFINER=`root`@`%` PROCEDURE `sp_ReportPrompt_Delete`(
|
||||
IN p_id_report_prompt CHAR(36)
|
||||
)
|
||||
BEGIN
|
||||
DELETE FROM `ReportPrompt`
|
||||
WHERE `id_report_prompt` = p_id_report_prompt;
|
||||
SELECT ROW_COUNT() AS rowsAffected;
|
||||
END;;
|
||||
DELIMITER ;
|
||||
Reference in New Issue
Block a user