$data = $this->db->table('travels')->where(array('status'=>0,'hot'=>1))->order( 'view','desc')->lists();
$data = $this->db->table('travels')-> ;where(array('status'=>0,'hot'=>1))->order('view','asc')->lists();
No matter what, it is sorted from small to large
What I want to do from large to small is a chain query
Already know the answer, order('view asc')