I have a table with transport data from my company employees:
nome ! valor1 ! valor2 ! valor3
teste1 ! 6.50 ! 0.00 ! 0.00
teste2 ! 4.30 ! 2.80 ! 1.10
teste3 ! 8.40 ! 1.10 ! 0.00
teste4 ! 2.85 ! 1.10 ! 0.00
Where it is possible for the employee to pick up 3 bus lines to come to work, so I have these three columns.
The problem I am passing is the following, I want to return the data from the three columns without repetition, where I have all values of the bus lines of the employees.
I need to return, if possible, in a single column the data without repeating, without values '0.00' and sorted ascending:
result
1.10
2.80
2.85
4.30
6.50
8.40