I have a problem.
I'm using this query:
...
(SELECT TXTVALUE
FROM table
WHERE
EXTID = 2
)AS A,
(SELECT TXTVALUE
FROM table
WHERE
EXTID = 4
)AS B
...
So in the end my goal is just call one's the query and create one alias per condition. Right now I have several queries(like this example up) calling the same table and I just need to have one different alias depending the condition.
Thanks in advance.