我在ellislab.com上看过文档,但我仍然没有得到它。没有完整的例子。我应该如何使用order_by
方法?
使用以下任何一项都没有效果:
$fields = $this->db->list_fields($tableName);
$this->db->order_by($fields[0], "desc");
$tableQ = $this->db->get($tableName);
或这些
$tableQ = $this->db->get($tableName)->order_by($fields[0], "desc");