If the results is 5 rows, so you know the 5 values, let's assume they are v1, v2, v3, v4 , v5
So the SQL is :
select t1.col as col1,
t2.col as col2,
t3.col as col3,
t4.col as col4,
t5.col as col5,
from
(select col from MyTable where col = v1) t1,
(select col from MyTable where col = v2) t2,
(select col from MyTable where col = v3) t3,
(select col from MyTable where col = v4) t4,
(select col from MyTable where col = v5) t5