how to use multiple where condition in codeigniter

$this->db->where('column1', 'value1'); $this->db->where('column2', 'value2'); $this->db->where('column3', 'value3'); $query = $this->db->get('your_table_name');