You cannot create a view in MS Access 2007, it is not supported. However, you can create a query to return the data you need.
See MSDN for a submission statement .
The Microsoft Access database engine does not support the use of CREATE VIEW or any of the DDL statements using a non-Microsoft Access database.
But creating a SELECT query is the same as a View query, in which you can retrieve data and use it for other queries.
For example, if you create a query called GetQuery1 , which performs the following actions:
SELECT * FROM table1
If you want to use this as a view, you can call it directly from another request:
SELECT * FROM GetQuery1
Taryn
source share