TorrediPisa
Programmer
Good Morning (or Evening) to everyone!
Pls kindly explain me how it is possible in SQL ACCESS to query the result of another query: For Example if I have:
SELECT FIELD1, FIELD2, FIELD3 FROM TABLE
I want to query the resultset of the above with another query. I know in SQL Server is possible to do like this:
SELECT FIELD2, FIELD3 FROM
(SELECT FIELD1, FIELD2, FIELD3 FROM TABLE) AS TBL
But if I try this in Access it doesn't work.
Could You Help Me in understanding this?
Thank You very much for yr help.
Regards
Tdp
Pls kindly explain me how it is possible in SQL ACCESS to query the result of another query: For Example if I have:
SELECT FIELD1, FIELD2, FIELD3 FROM TABLE
I want to query the resultset of the above with another query. I know in SQL Server is possible to do like this:
SELECT FIELD2, FIELD3 FROM
(SELECT FIELD1, FIELD2, FIELD3 FROM TABLE) AS TBL
But if I try this in Access it doesn't work.
Could You Help Me in understanding this?
Thank You very much for yr help.
Regards
Tdp