标签: sql codeigniter activerecord
这是我的模型中调用的方法:
return $this->db->select('*') ->from($this->table) ->where('date >',DateADD(day, -30, Current_TimeStamp)) ->get() ->result();
所以我有这个错误:
fatal error: Call to undefined function DateADD()
谢谢
答案 0 :(得分:0)
没有DateADD功能。
DateADD
使用类似DATE_ADD的功能。
DATE_ADD(date,INTERVAL expr type)