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 を取得しますが、データベース自体をソートしていません。また、そのコードを使用すると、いつでも簡単にデータを並べ替えることができるため、データベースを並べ替える必要はないと思います。