Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试构建一个应用程序,我需要使用员工编号、年份和月份按升序对表数据进行排序。这是我编写的代码,但表没有排序。有人可以告诉我正确的方法吗它?
尝试{
String sql="Select * from Allowance order by Employee_No,Year,Month ASC"; pst=conn.prepareStatement(sql); rs=pst.executeQuery();
您的代码正在运行。你得到一个排序的 ResultSet 但你没有对数据库本身进行排序。而且我认为没有必要对数据库进行排序,因为您总是可以使用该代码轻松获得排序的数据。