Hello !
I have written this query in the SQL view part of Access 2000's query editor:
SELECT IDTester, toBeTested
FROM tblTests INNER JOIN tblScenariosAndDescriptions ON (tblTests.IDFunction = tblScenariosAndDescriptions.IDFunction)
and it perfectly works (IDTester is a field from tblTests and toBeTested is one from tblScenariosAndDescriptions).
Now I want to name the table that is created when I do the junction (because I will include this query in another one):
SELECT IDTester, toBeTested
FROM tblTests INNER JOIN tblScenariosAndDescriptions ON (tblTests.IDFunction = tblScenariosAndDescriptions.IDFunction) AS myTable
But this doesn't work. I get "Syntax error in FROM clause".
How should the "AS" keyword be used ?
Thanks
Alex
I have written this query in the SQL view part of Access 2000's query editor:
SELECT IDTester, toBeTested
FROM tblTests INNER JOIN tblScenariosAndDescriptions ON (tblTests.IDFunction = tblScenariosAndDescriptions.IDFunction)
and it perfectly works (IDTester is a field from tblTests and toBeTested is one from tblScenariosAndDescriptions).
Now I want to name the table that is created when I do the junction (because I will include this query in another one):
SELECT IDTester, toBeTested
FROM tblTests INNER JOIN tblScenariosAndDescriptions ON (tblTests.IDFunction = tblScenariosAndDescriptions.IDFunction) AS myTable
But this doesn't work. I get "Syntax error in FROM clause".
How should the "AS" keyword be used ?
Thanks
Alex