0
try{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
con=DriverManager.getConnection("jdbc:odbc:attendance");
String sel="SELECT DATEDIFF(d, checkin, checkin)"
+ " from checkinout where userid=1";
stmt=con.createStatement();
rs=stmt.executeQuery(sel);
while(rs.next()){
System.out.println(rs.getString(1));
}
System.out.println("Connected");
}catch(Exception e){
System.out.println(e);
}
但出現異常 值java.sql.SQLException:[微軟] [ODBC Microsoft Access驅動程序]參數太少。預計2
謝謝
嘗試先寫兩個查詢,一個只獲取第一個值,另一個獲取最後一個。一旦你有了,你可以結合你的主要查詢,這將發現不同之處。一次構建您的最終查詢。 – Mustafa