Result set contains the records of database in forward.But,i want to retrieve records in reverse order.
what should i do?
please someone help me to solve this problem.
what should i do?
please someone help me to solve this problem.
ResultSet rs=st.executeQuery("select name from table ORDER BY name DESC");
Comment