Mysql Codeigniter Active Record - How do I do a where_in query and return the correct order of results?
问题 I have a set of IDs passed in a particular order which needs to be retained. I am querying from several left joins the data related to each ID. The IDs are returned from a search so the order must be kept to make the results valid (otherwise it makes searching rather pointless). My code looks something like; $this->db->where_in('id', $array_of_ordered_ids); For example - $this->db->where_in('id', array(4,5,2,6)); Will return the results in order 2,4,5,6. I'd like for it to retain the order