I am running the following SQL query:
select distinct col + "abc" value1, col+ "xyz" value2
from table_name
where col = "1234567890"
This returns output as:
value1 value2
1234567890abc 1234567890xyz
But I want the output as:
value
1234567890abc
1234567890xyz
How can I do this?