I have been using SQL Server for the last couple years and now find myself having to write queries in Teradata SQL Assistant.
I have been looking all over the internet, but can't seem find an answer to why so many examples I see have a "From" clause that contain no join information.
I keep seeing queries like the the one below..
Select A.Field1, B.Field2
FROM A,B
WHERE A.Key=B.Key
Is this doing some type of cross-join and using the where clause limit the records? Is there a default join type? (Inner/Outer) Is there a performance boost by using this syntax?
Thank you in advance!
sabloomer
I have been looking all over the internet, but can't seem find an answer to why so many examples I see have a "From" clause that contain no join information.
I keep seeing queries like the the one below..
Select A.Field1, B.Field2
FROM A,B
WHERE A.Key=B.Key
Is this doing some type of cross-join and using the where clause limit the records? Is there a default join type? (Inner/Outer) Is there a performance boost by using this syntax?
Thank you in advance!
sabloomer