Skip to content

Instantly share code, notes, and snippets.

@leonguyen
Last active August 29, 2015 14:01
Show Gist options
  • Select an option

  • Save leonguyen/2fcc884ca8ddb1e14b84 to your computer and use it in GitHub Desktop.

Select an option

Save leonguyen/2fcc884ca8ddb1e14b84 to your computer and use it in GitHub Desktop.
Mysql SP Delete
DELIMITER $$
CREATE PROCEDURE spCMyTopDel(
IN TID INT(11)
)
BEGIN
DELETE FROM `gluer_topic` WHERE TID = TID;
END;
DELIMITER ;
CALL spCMyTopDel(123);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment