Я вот из твоей фразы тоже ничего не понял. Почему поля должны "по-любому"? Как это 
"зачем указывать из какой таблицы поле"?

Так читать релизные ноты надо чтобы понимать :)

Named columns join

1. All columns specified in <column list> should exist in the tables at both sides. 2. An equi-join (<left table>.<column> = <right table>.<column>) is automatically created for all columns (ANDed). 3. The USING columns can be accessed without qualifiers---in this case, the result is equivalent to COALESCE(<left table>.<column>, <right table>.<column>).
   4. In "SELECT *", USING columns are expanded once, using the above rule.



Ответить