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.
モデル:フー
フィールド: id(Long)、barDate(日付)、barDay(整数 1..7)
データベース: Mysql
barDateが今日(時間、分、秒を気にせずに)またはbarDayが今日の曜日である場合にFooを照会する方法は?
HQLまたはSQLによる例を教えてください。ありがとう。
これを試して:
from Foo where date_format(barDate ,'%Y%m%d') = CURDATE()