这年头伸手党真多,拿去玩吧
SELECT * from 表名 where event_start_date2.当前时间为 2015-12-01,则显示顺序
2015-12-27, 2015-11-25, 2015-11-26, 2015-01-20, 2014-11-24
2015-12-27 距 2015-12-01 26天
2015-11-25 距 2015-12-01 5天
为何 2015-12-27 要排在前面?
不是与 越靠近当前时间的显示在最前面 的条件相佐吗
2.当前时间为 2015-12-01,则显示顺序
2015-12-27, 2015-11-25, 2015-11-26, 2015-01-20, 2014-11-24
2015-12-27 距 2015-12-01 26天
2015-11-25 距 2015-12-01 5天
为何 2015-12-27 要排在前面?
不是与 越靠近当前时间的显示在最前面 的条件相佐吗
当前时间为 2015-12-01时,活动2015-11-25已过去
应该说成:越靠近当前时间的显示在最前面 并且开始日期>=当前日期
这年头伸手党真多,拿去玩吧
SELECT * from 表名 where event_start_date
[code=sql]SELECT * from 表名 where event_start_date只显示了<当前日期的,怎么和 >当前日期的拼成一个sql
这年头伸手党真多,拿去玩吧
SELECT * from 表名 where event_start_date
[code=sql]SELECT * from 表名 where event_start_date只显示了<当前日期的,怎么和 >当前日期的拼成一个sql
不怕速度慢就用union吧