I keep getting the "Syntax error in CREATE TABLE statement" error message when I try to run the following CREATE VIEW statement in Access:
CREATE VIEW SeanWalshOrders (cNo, cName, street, city, county, discount) AS SELECT cNo, cName, street, city, county, discount FROM orders WHERE saleRepName = "Sean Walsh";
source share