I have a table: abc_test with columns n_num, k_str.
This query doesnt work:
select distinct(n_num) from abc_test order by(k_str)
B
did you try this?
SELECT DISTINCT n_num as iResult FROM abc_test ORDER BY iResult