mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 15:47:35 +00:00
9 lines
231 B
SQL
9 lines
231 B
SQL
DELIMITER ;;
|
|
CREATE DEFINER=`root`@`%` PROCEDURE `sp_Student_Delete`(IN p_id_student INT)
|
|
BEGIN
|
|
DELETE FROM student
|
|
WHERE id_student = p_id_student;
|
|
SELECT ROW_COUNT() AS rows_affected;
|
|
utf8mb4_0900_ai_ci;;
|
|
DELIMITER ;
|