I had problem with Order By. It return error "SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'order = ? ORDER BY name_en ASC' at line 1"
This is my code
$query = $this->db->select()->from('provinces');
$query->orderBy('name_en');
$result = $query->execute();
I had problem with Order By. It return error "SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'order = ? ORDER BY name_en ASC' at line 1"
This is my code $query = $this->db->select()->from('provinces'); $query->orderBy('name_en'); $result = $query->execute();
How can I Fix It.