A view is nothing more than a stored SQL SELECT statement. This is what a saved query is in Access (although you can also save DML SQL queries, of course).
In interactive access, use the query designer to create any SELECT statement, save it, and you have created the view.
If you want to do this in code, it's pretty easy to find the code for it using either DDL SQL or DAO.
source share