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.
QueryDSLの使用-.betweenを使用する以外に、タイムスタンプから日付で行を選択する方法はありますか?このクエリのようなもの:
ここで、convert(date、mytimestamp)= '2013-02-28'
Querydsl SQLを使用する場合は、betweenまたはカスタム式のいずれかを使用できます
このようなもの
DateExpression<Date> converted = DateTemplate.create(Date.class, "convert(date, {0})", mytimestamp);