I have started CodeIgniter not long ago. Can some tell me how to rewrite this query
SELECT question.timestamp AS question_time, reply.timestamp AS reply_time,
(SELECT DATEDIFF(reply_time, question_time)) AS time_used_to_reply
FROM question JOIN reply ON question.id = reply.question_id WHERE question.company_id=someid
using the activerecord
Also any tutorial to quickly understand activerecord would be very appreciated. Thanks