I'm running a MySQL query in this style:
select contents.*, users.* FROM users, contents
In both tables there are columns with the same name, and at the time of pulling them with PHP it is the first one, but I want both.
Is there any way to get both data from these columns without having to change each column name? I thought I'd put a prefix on it, something like that, but I do not know if it's functional.