MySQL Forums
Forum List  »  Spanish

Re: Error: 1064 Cuando al crear una función en Query Browser
Posted by: Ron Mey-Ami
Date: September 18, 2006 08:02PM

Estas usando el DELIMITER?

Asi:

DELIMITER $$

CREATE FUNCTION Quoter.fnMultiplica(i int, j int) RETURNS int(11)
begin
declare mul int;
set mul = j * i;
return mul;
end $$

DELIMITER ;

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Error: 1064 Cuando al crear una función en Query Browser
2523
September 18, 2006 08:02PM


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.