Welcome Guest, Not a member yet? Register   Sign In
IS NOT NULL using database helper
#4

[eluser]Phil Sturgeon[/eluser]
Code:
$this->db->where('surname IS NOT NULL');
$query = $this->db->get('users');
$data[‘reg_count’] = $query->num_rows;

It's possible you could do it this way too:

Code:
$query = $this->db->get_where('users', array('surname !=' => NULL));
$data[‘reg_count’] = $query->num_rows;


Messages In This Thread
IS NOT NULL using database helper - by El Forum - 06-07-2009, 05:52 AM
IS NOT NULL using database helper - by El Forum - 06-09-2009, 01:05 PM
IS NOT NULL using database helper - by El Forum - 06-09-2009, 01:09 PM
IS NOT NULL using database helper - by El Forum - 06-09-2009, 01:15 PM
IS NOT NULL using database helper - by El Forum - 06-10-2009, 06:45 AM
IS NOT NULL using database helper - by El Forum - 06-10-2009, 09:12 AM
IS NOT NULL using database helper - by El Forum - 06-10-2009, 12:59 PM
IS NOT NULL using database helper - by El Forum - 06-10-2009, 01:49 PM
IS NOT NULL using database helper - by El Forum - 06-10-2009, 03:16 PM
IS NOT NULL using database helper - by El Forum - 06-10-2009, 03:59 PM
IS NOT NULL using database helper - by El Forum - 06-10-2009, 04:48 PM
IS NOT NULL using database helper - by El Forum - 06-11-2009, 01:08 PM
IS NOT NULL using database helper - by El Forum - 06-11-2009, 01:58 PM
IS NOT NULL using database helper - by El Forum - 06-11-2009, 03:20 PM
IS NOT NULL using database helper - by El Forum - 06-11-2009, 04:06 PM
IS NOT NULL using database helper - by El Forum - 06-12-2009, 12:40 AM
IS NOT NULL using database helper - by El Forum - 06-12-2009, 01:40 AM
IS NOT NULL using database helper - by El Forum - 06-12-2009, 07:10 AM
IS NOT NULL using database helper - by El Forum - 06-16-2009, 03:02 AM
IS NOT NULL using database helper - by El Forum - 02-05-2013, 05:17 AM



Theme © iAndrew 2016 - Forum software by © MyBB