我想写这个sql 查询
SELECT count(*) FROM menu WHERE CHAR_LENGTH(CONTENT) > 20;
进入Codeigniter查询,怎么写?请帮忙。
我正在尝试使用以下查询编写上述 sql 查询。
public function record_count() {
$this->load->database();
$this->db->where('parent_id >','0');
// $this->db->where('content>','20'); //if the field "content" is greater then 20 characters
$this->db->from('menu');
return $this->db->count_all_results();
}