Access doesn't have views. Queries essentially are the same as views, so
create a query named ProductCustomers with SQL
Select cust_id, cust_contact
from Customers;
--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
"David" <(E-Mail Removed)> wrote in message
news:4FE509E6-E44E-44FB-B2FF-(E-Mail Removed)...
> Thank you Pieter... however, even though I cut and paste your code, I
> still
> get the same error : SYNTAX ERROR with TABLE STATEMENT
>
> I'm using ACCESS 2003 if this helps.
> Thanks again for your time and talent.
> Dave
> ____________________________________________________________
>
> "PieterLinden via AccessMonster.com" wrote:
>
>> David wrote:
>> >I'm learning SQL with MS ACCESS and my attempt to create a view is not
>> >working...
>> >Your assistance is appreciated. I'm good at ACCESS, just new to SQL
>> >from
>> >scratch!
>> >
>> >CREATE VIEW ProductCustomers
>> >(cust_id, cust_contact) as
>> >Select cust_id, cust_contact
>> >from Customers;
>> >
>> >I always get "SYNTAX ERROR with TABLE STATEMENT and VIEW is highlighted.
>>
>> CREATE VIEW ProductCustomers AS
>> SELECT cust_id, cust_contact
>> FROM Customers;
>>
>> --
>> Message posted via AccessMonster.com
>> http://www.accessmonster.com/Uwe/For...dules/200907/1
>>
>>