블로그 이미지
bedbmsguru

Notice

Recent Post

Recent Comment

Recent Trackback

Archive

calendar

1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30
  • total
  • today
  • yesterday
2018. 10. 26. 21:40 maridb&mysql

delimiter $$
DROP FUNCTION IF EXISTS getVMwareIPAddress$$
CREATE FUNCTION `getVMwareIPAddress`(
`p_guest_id` int
)
RETURNS varchar(500)

BEGIN
DECLARE done INT DEFAULT FALSE;
DECLARE temp_ip_address varchar (500);
DECLARE result_ip_string varchar (500);



END
$$
delimiter ;

'maridb&mysql' 카테고리의 다른 글

mysql DB관리용 쿼리  (0) 2018.10.26
procedure 생성 템플릿  (0) 2018.10.26
Foreign key 정보조회 및 삭제  (0) 2018.10.26
mariadb (mysql)백업  (0) 2018.10.26
mariadb 설치  (0) 2017.12.26
posted by bedbmsguru