Getting table specific columns after joining the tables in CodeIgniter
08:17 23 Oct 2017

I've 3 tables lets say A, B, and C. And they have common fields created_date which are table specific.

If I join the tables with left join using id's, then how can I get like, A.created_date after fetching the records in the view page while displaying the result. I mean if I use $row->created_date it will fetch me some other tables records or 01-01-1970 which is useless.

php mysql codeigniter inner-join ambiguous