SELECT from subquery in Codeigniter Active Record
问题 How would I do the following query in Codeigniter ActiveRecord : - SELECT *, (SELECT image_path FROM image WHERE image_table = 'model' AND image_table_id = model_id GROUP BY image_table_id LIMIT 1) AS ModelImg FROM (SELECT * FROM vw_newcars where offer_table = 'derivative' order by offer_order ) x WHERE make_name = 'Fiat' group by offer_table_id limit 12 The part I'm having problems with is how to do a select from subquery in Active Record. I don't see a from_select function or anything