Create View in MS Access 2007

隐身守侯 提交于 2019-12-30 08:11:46

问题


I have database in MsAccess 2007 having 5 Tables inside them

I want to create View in MS Accesss

I dont need Syntax, but i need Step to create View (because i cant find CreateView in MS Acccess


回答1:


You cannot create a view in MS Access 2007, it is not supported. However, you can create a query to return the data that you need.

See MSDN for Create View Statement.

The Microsoft Access database engine does not support the use of CREATE VIEW, or any of the DDL statements, with non-Microsoft Access database engine databases.

But creating a SELECT query is the same as a View in that you can retrieve data and use it by other queries.

For example, if you create a query called GetQuery1 which performs the following:

SELECT *
FROM table1

If you want to use this like a view, you can call this directly from another query:

SELECT *
FROM GetQuery1



回答2:


MS Access lets you create a Query which can be used in other Queries. So it is similar to a view




回答3:


CREATE VIEW view [(field1[, field2[, …]])] AS selectstatement

https://msdn.microsoft.com/en-us/library/bb177895(v=office.12).aspx



来源:https://stackoverflow.com/questions/11367959/create-view-in-ms-access-2007

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!