0

这是我在模型中调用的方法:

return $this->db->select('*')
->from($this->table)
->where('date >',DateADD(day, -30, Current_TimeStamp))
->get()
->result();

所以我有这个错误:

fatal error: Call to undefined function DateADD() 

谢谢你

4

1 回答 1

0

没有DateADD功能。

DATE_ADD函数一样使用。

DATE_ADD(date,INTERVAL expr type)
于 2013-08-05T13:56:02.500 回答