IronRocket
Technical User
I'm retraining myself in SQL and I'm trying to create a view. I am using the following "script" to build a view in Access:
Create VIEW NewCustomer ([Customer ID], [Customer Name], [Last Year's Salary])
AS SELECT [Customer ID], [Customer Name], [Last Year's Salary]
FROM Customer;
When I do this...Access comes back and says that there is a "Syntax error in Create Table Statement".
After I received this error statement, I used the online help and keyed in "Create View" and it says the following:
"The Microsoft Jet database engine does not support the use of CREATE VIEW, or any of the DDL statements, with non-Microsoft Jet database engine databases.".
Sooo, what the heck is this trying to tell me. I can't create views in Access. I don't know Access that well, and I'm just trying to sharpen my SQL. I use to write SQL in TSO querying against DB2. Just wondering if anyone has any ideas?
Create VIEW NewCustomer ([Customer ID], [Customer Name], [Last Year's Salary])
AS SELECT [Customer ID], [Customer Name], [Last Year's Salary]
FROM Customer;
When I do this...Access comes back and says that there is a "Syntax error in Create Table Statement".
After I received this error statement, I used the online help and keyed in "Create View" and it says the following:
"The Microsoft Jet database engine does not support the use of CREATE VIEW, or any of the DDL statements, with non-Microsoft Jet database engine databases.".
Sooo, what the heck is this trying to tell me. I can't create views in Access. I don't know Access that well, and I'm just trying to sharpen my SQL. I use to write SQL in TSO querying against DB2. Just wondering if anyone has any ideas?