Actually, you can use views.
Remember, any stored query in the ms-access "query" tab can be used in place
of a table name, and, you can do a query on a query. So, the standard
queries in ms-access really for all purposes is a view.
So often, I seen sql people come back and RANT about why did not anyone tell
them that saved quires in ms-access is the same thing as a view? Further,
many people as actually asked why does MS not call them views? The only
reason we don't call that tab "views" is that we can also place any other
type of queries in there (action queries, etc). However, any select query
really can be considered a view.
In addition, JET 4 (a2000 and later) actually supports the ddl commands to
create views.
So, the following is actually legal:
CREATE VIEW ViewName AS SELECT FieldName1, FieldName2 FROM TableName
ACC2000: New Features in Microsoft Jet 4.0
http://support.microsoft.com/default.aspx?scid=kb;en-us;275561