Guest User

Untitled

a guest
Mar 13th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. mysql> show CREATE PROCEDURE get_user_name\G
  2. *************************** 1. row ***************************
  3. Procedure: get_user_name
  4. sql_mode:
  5. Create Procedure: CREATE DEFINER=`root`@`localhost` PROCEDURE `get_user_name`(i char(9))
  6. BEGIN
  7. SELECT * from users where user_name=i;
  8. END
  9. 1 row in set (0.02 sec)
Add Comment
Please, Sign In to add comment