var1 = 2 (count from a table)
var2 = 3 (count from another table)
I am writing a query
Select
'Factor1 (' + var1 + ')' as NEW_FACTOR,
'Factor2 (' + var2 + ')' as ANOTHER_FACTOR
FROM SomeTable
ResultSet should be
Factor1 (2) Factor2 (3)
How do I append in Oracle?
You would use the
||operator to concatenate strings