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.
如何根据日期执行查询?正如您在下面看到的,我有一个带有 PURCHASEDATE 属性的表作为时间戳。 我目前的查询是
String query = "SELECT t FROM TransactionE t WHERE t.purchaseDate = '" + currentDate + "'";
在这种情况下 currentDate 是“2013-10-22”
由于时间戳,我上面的查询永远不会返回结果。如何根据日期从时间戳中查询?
多谢你们!=)
如何仅从 SQL Server 日期时间数据类型返回日期部分
使用此处给出的答案。