Skip to content
Advertisement

How to resolve ambiguous column names when retrieving results?

I have two tables in my database:

NEWS table with columns:

  • id – the news id
  • user – the user id of the author)

USERS table with columns:

  • id – the user id

I want to execute this SQL:

When I get the results in PHP I would like to get associative array and get column names by $row['column-name']. How do I get the news ID and the user ID, having the same column name?

Advertisement

Answer

You can set aliases for the columns that you are selecting:

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement