Welcome Guest, Not a member yet? Register   Sign In
Select distinct in active record
#2

[eluser]champs[/eluser]
The AR class is just a fancy string builder. For example:

Code:
<?php
$this->db->select('DISTINCT foo.bar, baz.field1, baz.field2');
$this->db->from('footable AS foo');
$this->db->join('baztable AS baz', 'foo.bar=baz.bip');
$this->db->where('baz.importantvalue', 123);
// and even....
$this->db->orderby('RAND()');
?>


Messages In This Thread
Select distinct in active record - by El Forum - 08-02-2007, 06:34 AM
Select distinct in active record - by El Forum - 08-02-2007, 07:36 AM



Theme © iAndrew 2016 - Forum software by © MyBB