Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have below query:

SET @sql = NULL ;
SELECT GROUP_CONCAT( DISTINCT CONCAT(  'select latitude,longitude,max(serverTime) as serverTime,', deviceID,  ' AS device from  d', deviceID,  '_gps' ) 
SEPARATOR  '  UNION ALL  ' ) 
INTO @sql 
FROM devices
WHERE accountID =2;
PREPARE stmt FROM @sql ;
EXECUTE stmt;

Can someone help me to write the above query in codeIgniter style....

ANd another thing is :What is the difference between writing the query in 1 and 2 formats

1. $query = $this->db->query('YOUR QUERY HERE'); 



 2. $this->db->select("...");  
    $this->db->from(); 
    $this->db->where();

Will it have any effect on performance if we use 2nd style... Thank You

share|improve this question
possible duplicate of query in codeIgniter style – Jon Clements Oct 26 '12 at 9:13

migrated from webmasters.stackexchange.com Oct 25 '12 at 11:28

1 Answer

Well, that depends on what you mean by performance.

On the PHP side, it will take a tiny bit of processing (because it has to go through the database abstraction library).

On the SQL side, it will make no difference. CodeIgniter's active record class will compile the SQL statement and then run it, so as long as you write the statements correctly, you'll end up with the same query you had before.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.