This may not be possible, but I want to write a statement that will pull a distinct list of numbers from TWO separate fields. Is that possible? For example, I thought something like this might work:
SELECT DISTINCT route_number_1 AS route. route_number_2 AS route FROM customers ORDER BY route_number_1 ASC, route_number_2 ASC
But when I run that in PHP MyAdmin, I get two columns instead of just one, and it appears to be only be a distinct list from one field, not both. Any ideas?
Thanks