如何将日期时间列拆分为日期和时间并分别进行比较

发布于 2024-12-11 20:37:45 字数 446 浏览 0 评论 0原文

访问表

我有一个包含列的

            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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暖伴 2024-12-18 20:37:46
mysql> select cast('2011-10-24 15:20:10' as date);
+-------------------------------------+
| cast('2011-10-24 15:20:10' as date) |
+-------------------------------------+
| 2011-10-24                          |
+-------------------------------------+
1 row in set (0.00 sec)

mysql> select cast('2011-10-24 15:20:10' as time);
+-------------------------------------+
| cast('2011-10-24 15:20:10' as time) |
+-------------------------------------+
| 15:20:10                            |
+-------------------------------------+
1 row in set (0.00 sec)
mysql> select cast('2011-10-24 15:20:10' as date);
+-------------------------------------+
| cast('2011-10-24 15:20:10' as date) |
+-------------------------------------+
| 2011-10-24                          |
+-------------------------------------+
1 row in set (0.00 sec)

mysql> select cast('2011-10-24 15:20:10' as time);
+-------------------------------------+
| cast('2011-10-24 15:20:10' as time) |
+-------------------------------------+
| 15:20:10                            |
+-------------------------------------+
1 row in set (0.00 sec)
独行侠 2024-12-18 20:37:46

使用 MySQL 函数日期提取日期部分,类似 TIME 来获得 部分。

Use the MySQL function DATE to extract the date component, and similarly TIME to obtain that part.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文