Skip to content

Instantly share code, notes, and snippets.

@danielestevez
Last active February 22, 2018 11:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielestevez/26a27947b60baa741002 to your computer and use it in GitHub Desktop.
Save danielestevez/26a27947b60baa741002 to your computer and use it in GitHub Desktop.
Utils for debugging triggers and procedures in SQL
DROP TABLE IF EXISTS `kinton`.`debug_msg`;
CREATE TABLE `debug_msg` (
`msg` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ;
INSERT INTO debug_msg (msg) VALUES (CONCAT('message: ',IFNULL(variable, 'NULL')));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment