这行得通吗?
$this->db->where('LastName', 'Svendson');$this->db->where('Age', 12);$this->db->where("(FirstName='Tove' OR FirstName='Ola' OR Gender='M' OR Country='India')", NULL, FALSE);$query = $this->db->get('Persons');return $query->result();
这行得通吗?
$this->db->where('LastName', 'Svendson');$this->db->where('Age', 12);$this->db->where("(FirstName='Tove' OR FirstName='Ola' OR Gender='M' OR Country='India')", NULL, FALSE);$query = $this->db->get('Persons');return $query->result();