MySQL Forums
Forum List  »  Security

Re: create function / procedure local vs. remote
Posted by: manoj sharma
Date: February 23, 2009 06:02AM

DELIMITER $$

DROP FUNCTION IF EXISTS `db`.`na` $$

CREATE FUNCTION `db`.`na`(pName VARCHAR(1024)) RETURNS varchar(1024)
BEGIN

return '';

END $$

DELIMITER ;


db-place in db- database name or db schema
na -place in na- table name

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: create function / procedure local vs. remote
3213
February 23, 2009 06:02AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.