I have following query:
SELECT DISTINCT(uniq)
FROM
(
SELECT sex AS uniq FROM type4
UNION
SELECT fason AS uniq FROM type4
UNION
SELECT color AS uniq FROM type4
UNION
SELECT size AS uniq FROM type4
) AS Temp
It works almost well, it returns:
[uniq] => some unique value
Is it possible to know which column this unique value was from? I mean something like this:
[uniq] => some unique value
[from] => size
How can I do this?