I presume given the forum this is an Access database. Access doesn't have views as such, they are called queries in Access speak.
Go to the Query tab or menu depending on your version, create a new one and put the code:
select sales_amount from
labor_table;
in and save it as thisview.
This is the Access equivalent of what your SQL does.
Small qualification to John's post above. Access does have views if your database is created as an "ADP project". This feature is available in Access 2000 and above
An ADP database is an Access client application which is distinct to a .mdb format, and hosts its data in a 'native' manner on SQL Server. As such, it has direct visibility to the views hosted in a SQL Server database.
You may find that the Microsoft Access Project forum is appropriate and/or one of the SQL Server forums.
Hope this helps,
Steve Lewy
Solutions Developer
steve@lewycomputing.com.au
(dont cut corners or you'll go round in circles)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.