0

我正在使用 opencart 并编写了一个新模块来获取即将推出的产品。但它仍然显示今天之前的产品。

我的 sql 语句:

SELECT *, DATE_FORMAT(date_available, "%M %d, %Y") as `comingdate` FROM `product` WHERE `date_available` >= '.DATE("Y-m-d").' ORDER BY `date_available` DESC LIMIT 20

那句话有什么问题?

4

1 回答 1

1
"SELECT *, DATE_FORMAT(date_available, '%M %d, %Y') as `comingdate` FROM `product` WHERE `date_available` >= '".date('Y-m-d')."' ORDER BY `date_available` DESC LIMIT 20"

Remember, date_available is a string. You need the single quotes there.

于 2013-04-27T01:25:28.177 回答