需要判定结束日期是不是大于当前日期,一般情况下都是通过php判定日期,然后查询。
得到判定日期的sql查询语句的php代码:
下面为大家介绍使用mysql时间函数获取当前时间的方法,在日常的开发中这个函数很有用哦。
mysql> select current_timestamp();
+---------------------+
| current_timestamp() |
+---------------------+
| 2010-01-18 21:24:37 |
+---------------------+
1 row in set (0.00 sec)
mysql> select current_date();
+----------------+
| current_date() |
+----------------+
| 2010-01-18 |
+----------------+
1 row in set (0.00 sec)
mysql> select current_time();
+----------------+
| current_time() |
+----------------+
| 21:24:46 |
+----------------+
1 row in set (0.00 sec)