Codeigniter select where

$this->db->select('column1, column2');
$this->db->where('column3', $value);
$query = $this->db->get('your_table_name');