0

当我尝试插入 Select detro example DATE_FORMAT (date_end, '% W% M% Y') AS dateend 的函数时遇到问题。

$ this-> db-> select (name, DATE_FORMAT (date_end, ‘% W% M% Y’) AS dateend)

它说 '% W% M% Y' 方法未知

4

1 回答 1

3

根据这篇文章和这个论坛条目,添加false到您的查询中就可以了:

$this->db->select("DATE_FORMAT(your_date_field, 'Year: %Y Month: %m Day: %d') AS formated_date", FALSE );
于 2012-11-28T19:11:02.343 回答