M
Matt Volatile
Hello again, yet another query!
How would I give a set of JOINed tables an Alias using AS?
If the all the columns I needed to reference were in the same table, I could
use
SELECT Field1, Field2
FROM table AS alias
However, I need to reference two joined tables as a single Alias.
I tried FROM table1 INNER JOIN table2 ON
[table1].[field1]=[table2].[field2] AS alias
but that returned an error.
What's the correct syntax?
How would I give a set of JOINed tables an Alias using AS?
If the all the columns I needed to reference were in the same table, I could
use
SELECT Field1, Field2
FROM table AS alias
However, I need to reference two joined tables as a single Alias.
I tried FROM table1 INNER JOIN table2 ON
[table1].[field1]=[table2].[field2] AS alias
but that returned an error.
What's the correct syntax?