Guest User

Untitled

a guest
Dec 16th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. drop procedure if exists `proc_deleteObjectId`;
  2. create procedure `proc_deleteObjectId`(in `p_objectId` int(11))
  3. begin
  4. delete from objects where id = p_objectId; --
  5. end;
Add Comment
Please, Sign In to add comment