Hello all :) I want to name dynamically my columns with Oracle 10g. Here is what I would like to do:
SELECT
NAME as "User.Name",
EMAIL as "User.Email.For.Criteria2.at." || CRITERIA
FROM CUSTOMERS
WHERE
CRITERIA = ?
Or:
SELECT
NAME as "User.Name",
EMAIL as "User.Email.For.Criteria2.at." || ?
FROM CUSTOMERS
WHERE
CRITERIA = ?
With some Java looping through all parameters with: (this is already in production)
ps.setString(i+1, parameterArray[i]);
I know I could build the query in Java, but my constraints are that deploying new Java code is to be avoided :/. I can modify the SQL though. Is this possible with Oracle SQL only?
Best regards