Maybe the question have been already asked before.
I didn't find any topic performing a search on 'using' keyword.
Here is the little question:
If I have this query
Code:
SELECT
a.x,
a.y,
a.z
FROM
a
INNER JOIN b
ON (a.x = b.x)
INNER JOIN c
USING (y)
During the 'c' table join the 'y' field will be used for joinning with
- a
- b
or both ?