May 9, 2008 #1 geon12x MIS May 9, 2008 1 IS here is a very simple query I made CREATE VIEW ML_CUST AS SELECT CUSTOMER.FirstName, CUSTOMER.LastName, CUSTOMER.Phone FROM CUSTOMER WHERE CUSTOMER.State ='ML' ; and I can't even do it right. error in view when I run it...
here is a very simple query I made CREATE VIEW ML_CUST AS SELECT CUSTOMER.FirstName, CUSTOMER.LastName, CUSTOMER.Phone FROM CUSTOMER WHERE CUSTOMER.State ='ML' ; and I can't even do it right. error in view when I run it...
May 9, 2008 1 #2 PHV MIS Nov 8, 2002 53,708 FR JetSQL don't deal with views. A workaround is to create a select query named ML_CUST and then use it like a view. Hope This Helps, PH. FAQ219-2884 FAQ181-2886 Upvote 0 Downvote
JetSQL don't deal with views. A workaround is to create a select query named ML_CUST and then use it like a view. Hope This Helps, PH. FAQ219-2884 FAQ181-2886
May 9, 2008 #3 sblocher IS-IT--Management Jun 17, 2003 28 US You can create "views" in Access. They end up as "Queries", but same thing, just different name. Try this: CREATE VIEW ML_CUST (FirstName, LastName, Phone) AS SELECT CUSTOMER.FirstName, CUSTOMER.LastName, CUSTOMER.Phone FROM CUSTOMER WHERE CUSTOMER.State ="ML" ; Upvote 0 Downvote
You can create "views" in Access. They end up as "Queries", but same thing, just different name. Try this: CREATE VIEW ML_CUST (FirstName, LastName, Phone) AS SELECT CUSTOMER.FirstName, CUSTOMER.LastName, CUSTOMER.Phone FROM CUSTOMER WHERE CUSTOMER.State ="ML" ;