[eluser]Computerzworld[/eluser]
Hello,
I am executing one simple select query in code igniter using following code.
$this->db->query('select * from tablename where id =1');
I can write the same using following code also.
$this->db->where('id','1');
$query = $this->db->get('tablename');
Is there any difference between these two or they are identical?
Thanks.