我想SELECT
5 项WHERE
unix_timestamp 是在今天之后。
示例:unix_timestamp(这里不是格式):
15.08.2013
18.08.2013
21.08.2013
27.08.2013
30.08.2013
MySQL:SELECT * WHERE unix_timestamp is today or after today and ORDER BY unix_timestamp with LIMIT 0,5
MySQL Result 必须是带有 unix_timestamp 的项目:
18.08.2013
21.08.2013
27.08.2013
30.08.2013