DISTINCT restituirà solo righe distinte, quindi:
Entrambe le colonne
Potresti anche passare a GROUP BY.
SELECT `state`, `state_name` FROM `geo` group by 'state', 'state_name' ORDER BY `state_name` ASC
DISTINCT restituirà solo righe distinte, quindi:
Entrambe le colonne
Potresti anche passare a GROUP BY.
SELECT `state`, `state_name` FROM `geo` group by 'state', 'state_name' ORDER BY `state_name` ASC