Hi,
We've encountered the following "issue". I like to use the following writing:
SELECT Id, Name
FROM Table1
JOIN Table2 ON Table1.FK1 = Table2.FK1
but a colleague of mine uses:
SELECT Id, Name
FROM Table1 JOIN Table2
ON Table1.FK1 = Table2.FK1
Is there a best practice for this? I think it's more convenient if all used tables are alligned.
Kind regards, Sem