mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 02:57:36 +00:00
Edit button locate, delete, group header
This commit is contained in:
@@ -7,9 +7,9 @@ CREATE DEFINER=`root`@`%` PROCEDURE `sp_ReportPrompt_Update`(
|
||||
BEGIN
|
||||
UPDATE `ReportPrompt`
|
||||
SET
|
||||
`prompt` = p_prompt,
|
||||
`reportname` = p_reportname
|
||||
WHERE `id_report_prompt` = p_id_report_prompt;
|
||||
`prompt` = COALESCE(p_prompt, `prompt`),
|
||||
`reportname` = COALESCE(p_reportname, `reportname`)
|
||||
WHERE `id_ReportPrompt` = p_id_report_prompt;
|
||||
SELECT ROW_COUNT() AS rowsAffected;
|
||||
END;;
|
||||
DELIMITER ;
|
||||
|
||||
Reference in New Issue
Block a user