Skip to content

Instantly share code, notes, and snippets.

@richlloydmiles
Last active April 25, 2019 07:13
Show Gist options
  • Save richlloydmiles/cfe2364fb493c6644242dfd533ad8f1f to your computer and use it in GitHub Desktop.
Save richlloydmiles/cfe2364fb493c6644242dfd533ad8f1f to your computer and use it in GitHub Desktop.
mysql udemy

Notes

https://www.udemy.com/mysql-and-sql-from-beginner-to-advanced

Delimeter

delimiter will change what is used to terminate statements

  delimiter $$
  select * from books$$

Create procedure

create procedure helloWorld()
begin
<sql>
end

Drop procedure

drop procedure helloWorld

To Edit a procedure, drop and recreate it.

Call procedure

call helloWorld();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment