I have most of my MySQL working well right now, but I need to add some additional data at the end of my result set. This additional info has to come from another, related table outside the original result set table.
Typically, using raw MySQL, I would do something like a subselect and add that as a new column onto my orginal result set using the “as” keyword.
Does anyone have any experience using subselects and the “as” keyword within the CI Active Record scenario?
Any guidance is greatly appreciated.