如何将日期时间列拆分为日期和时间并分别进行比较
访问表
我有一个包含列的
member_id
visit_id
visit_logout_datetime(values like this... '
,现在我需要将 Visit_logout_datetime 与今天的日期时间属性进行比较...
这里有两个条件
1) 我需要比较今天的日期与来自此字段的 date
Visit_logout_datetime
/ /在这里我想做点什么....
2) 我需要将当前时间与该字段中的时间进行比较
Visit_logout_datetime
我想单独比较..
我该怎么做..可以
吗一请帮忙解决这个问题......
I have a visit table
with columns
member_id
visit_id
visit_logout_datetime(values like this... '
now i need to compare the visit_logout_datetime with today date time property...
here is two conditions
1) i need to compare the today date with date
coming from this field visit_logout_datetime
// here i want to do something....
2) i need to compare the present time with the time in this field
visit_logout_datetime
i want to compare individually ..
how can i do that ..
would any one pls help on this....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 MySQL 函数日期提取日期部分,类似 TIME 来获得 部分。
Use the MySQL function DATE to extract the date component, and similarly TIME to obtain that part.