I’m trying to create a new table in a subquery by feeding it part of the data from an already existing table.
In Access the SQL code would be:
select * into ODIVELAS_TEAM
from Formandos
where LOCALIDADE = “ODIVELAS”;
This doesn’t seem to work in Base.
Am I doing something wrong? Is there another way to do this?