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.