As the title states – can it be done? I read on a MSDN page that this is not supported, but my assignment request for how. Can, and how can, it be done?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
A view is nothing more than a saved SQL SELECT statement. This is what a saved query in Access is (though you can save DML SQL statements, too, of course).
In interactive Access, use the query designer to create any SELECT statement, save it, and you’ve created a view.
If you want to do it in code, it’s pretty easy to find the code for it, using either DDL SQL or DAO.