$this->db->group_by()
Permits you to write the GROUP BY portion of your query:
You can also pass an array of multiple values as well:
Permits you to write the GROUP BY portion of your query:
$this->db->group_by("title"); // Produces: GROUP BY title
$this->db->group_by(array("title", "date")); // Produces: GROUP BY title, date
No comments:
Post a Comment