i want to create a function which calculate a value using a query and i have problem returing the value:

Shortened, my query is:

    CREATE FUNCTION func01(value1 INT , monto DECIMAL (10,2)) RETURNS DECIMAL(10,2)
    BEGIN
    SET @var_name = 0;
    select @var_name=if(value1 = 1,monto * table.divisa_dolar,table.monto *divisa_euro) from table where data_init = 1;
    return @var_nam;
    END

I get a SQL syntax error. SQL Error (1064): You have an error in your SQL syntax;

Thanks.

link|improve this question

2  
"I get a SQL syntax error. " - care to share the error, or are you keeping it as a surprise? – Mitch Wheat Feb 9 '11 at 0:17
SQL Error (1064): You have an error in your SQL syntax – Cesar Feb 9 '11 at 0:32
feedback

1 Answer

up vote 3 down vote accepted

Assuming these are all generic names (table will not be a good table name), the problem is you can't use == for comparison. You are also missing some key syntax (DECLARE, SELECT INTO, etc.).

Change to this:

CREATE FUNCTION func01(value1 INT , monto DECIMAL (10,2))
RETURNS DECIMAL(10,2)
DETERMINISTIC
BEGIN
  DECLARE var_name DECIMAL(10,2);
  SET var_name = 0;
  SELECT if(value1 = 1,monto *divisa_dolar,monto *divisa_euro) INTO var_name
    FROM table
    WHERE data_init = 1;
  RETURN var_name;
END

MySQL Comparison Functions and Operators

Related Question: Single Equals in MYSQL

Function Help: http://www.databasejournal.com/features/mysql/article.php/3569846/MySQL-Stored-Functions.htm

link|improve this answer
Yes, its a generic example :p. Make the correction but i am still getting the syntax errror. Thanks – Cesar Feb 9 '11 at 0:29
You also need to add a DECLARE statement (see updated answer) – theChrisKent Feb 9 '11 at 0:31
Added the declare statement, taked out the '@' and added a "select data into var". Its working. Thanks. – Cesar Feb 9 '11 at 0:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.