In PHP, what is the correct syntax for accessing a specific column from a table in an Inner Join query in Oracle?

When accessing a specific column from a table in an Inner Join query in Oracle using PHP, you need to specify the table alias followed by a period and then the column name. This helps to differentiate between columns with the same name in different tables involved in the join.

$query = "SELECT table1.column_name, table2.column_name
          FROM table1
          INNER JOIN table2 ON table1.id = table2.id";