Skip to content

Instantly share code, notes, and snippets.

@bkmorse
Created March 20, 2015 19:05
Show Gist options
  • Save bkmorse/5d482764edd9552e3019 to your computer and use it in GitHub Desktop.
Save bkmorse/5d482764edd9552e3019 to your computer and use it in GitHub Desktop.
// https://ellislab.com/codeigniter/user-guide/database/active_record.html
// is
$this->db->where_not_in('group_id', array(2, 13));
// the same as?
$this->db->where('group_id !=', 2);
$this->db->where('group_id !=', 13);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment