string findUsersID = "SELECT ThreadsID FROM Threads";
I want every ID selected from the threads table in the opposite order. So instead of starting to retrieve the first id (when i call read.Read()). I want it to call the last ID and got the the previous..and so on with each READ() call.
How could I re-write the statement to achieve my goal?
1 Answer