Take the following query:
SELECT
*
FROM
Child
JOIN
Parent
ON ...
Sql Prompt suggests me:
... Child.Cod_Parent = Parent.Cod_Parent
But i'd like the join condition were like this:
... Parent.Cod_Parent = Child.Cod_Parent
Of course, i know they both work as well. But i use to ever list the Parent table before. That's just the way my head works....
Thank you.
Sql Prompt suggests me:
But i'd like the join condition were like this:
Of course, i know they both work as well. But i use to ever list the Parent table before. That's just the way my head works....
Thank you.