これは私のデータベースです:
date status
1343469690 Q
1343470540 C
1343470556 P
私はこのコードを書きました:
public class TodayQ {
public int data() {
int count = 0;
//count++;
try {
Class.forName("com.mysql.jdbc.Driver");
Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/pro", "root", "");
PreparedStatement statement = con.
prepareStatement("select * from orders where status='Q' AND date=CURDATE()");
ResultSet result = statement.executeQuery();
while (result.next()) {
// Do something with the row returned.
count++; //if the first col is a count.
}
} catch (Exception exc) {
System.out.println(exc.getMessage());
}
return count;
}
}
日付がyyyy-mm-dd
フォーマットされている場合、正常に機能します。しかし今、私の日付は1343469690
形式のタイムスタンプです。カウント値を取得するにはどうすればよいですか?