https://www.udemy.com/mysql-and-sql-from-beginner-to-advanced
delimiter
will change what is used to terminate statements
delimiter $$
select * from books$$
create procedure helloWorld()
begin
<sql>
end
drop procedure helloWorld
To Edit a procedure, drop and recreate it.
call helloWorld();