Skip to content

Instantly share code, notes, and snippets.

@potados99
Created August 1, 2022 14:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save potados99/ee2bbe89f577146b99ca01c3e4337ebc to your computer and use it in GitHub Desktop.
Save potados99/ee2bbe89f577146b99ca01c3e4337ebc to your computer and use it in GitHub Desktop.
create procedure sp_insert_something(in something varchar(255))
begin
-- ...생략...
if something = 'hello' then
insert into things set body = something;
end if;
-- ...생략...
end;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment