S
SpookiePower
My table looks like this - almost..
Autonumber(id) Test number
1 a 1
2 a 2
3 b 3
4 b 4
I have an SQL that looks like this -
SELECT DISTINCT test FROM table01 ORDER BY test DESC;
Insted of ordering by test, I would like to order by id.
I have tryed this -
SELECT DISTINCT test,id FROM table01 ORDER BY id DESC;
But it will not work. What can I do ?
Autonumber(id) Test number
1 a 1
2 a 2
3 b 3
4 b 4
I have an SQL that looks like this -
SELECT DISTINCT test FROM table01 ORDER BY test DESC;
Insted of ordering by test, I would like to order by id.
I have tryed this -
SELECT DISTINCT test,id FROM table01 ORDER BY id DESC;
But it will not work. What can I do ?