using $wpdb->get_results
I am joining two tables that have some columns in common, now normally I would expect to get
table_a.one
and table_b.one
both returned, but instead
I get only one returned which is the value for table_b.one
in the position of table_a.one
Is there a way around this or am I forced to avoid using $wpdb?
Edit: I need the column names.