I'm trying to call a function in a select statement. It didn't work that is way I asking for help.
The following Code is like example and will be run in a Package:
THE FUNCTION:
Function sum_val(val1 in NUMBER, val2 in NUMBER) return float is
u float;
BEGIN
u := (val2+ val1) / 100;
return u;
END sum_val;
SELECT statement:
PROCEDURE xy_prc(pi_table_in IN VARCHAR2) IS
BEGIN
sql_stmt := 'CREATE TABLE AS tbx
SELECT
t.*, '|| sum_val(t.val1, t.val2) ||' AS Val3
FROM '|| pi_table_in ||' t';
EXECUTE IMMEDIATE sql_stmt;
END;
The problem is here:
'|| sum_val(t.val1, t.val2) ||' AS Val3
In this case I have to declare t.val1, t.val2 and the values of them from the SELECT statement will be not replaced.
This also didn't worked:
'|| sum_val('t.val1', 't.val2') ||' AS Val3
In this case 't.val1', 't.val2'
will be values(STRINGS)!
It that possible to call this function with SELECT statement?
Many thanks for your Answers!
Seems to me you're trying too hard :P
can't you just let the function be called at the time the dynamic query executes?