如何选择未来 12 小时内的记录?
我将一些记录存储在名为 bookings_mst 的表中。我正在存储预订日期和日期预订时间分别放入 Booking_date 和 booking_date 字段中预订时间。现在我想选择时间在接下来 12 小时内的记录。我怎样才能做到这一点?
I am storing some records in a table named bookings_mst. I am storing booking date & booking time separately into fields as booking_date & booking_time. Now I want to select records that has the time coming in Next 12 Hours. How can I do that ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试这个变体 -
Try this variant -
试试这个:
Try this:
如果将日期和时间存储在单个日期时间字段中,则查询将变得相当容易。像这样的东西应该足够了
If you store the date and time in a single datetime field, then the query becomes fairly easy. Something like this should suffice