J
jmarr02s
Is Creating a VIEW OR Updating a VIEW possible using SQL code in MS
Access?
Here is the code for Creating a VIEW that I tried (unsuccessfully) to
use with MS Access:
CREATE VIEW sup_orders AS
SELECT suppliers.supplier_id, orders.quantity, orders.price
FROM suppliers, orders
WHERE suppliers.supplier_id = orders.supplier_id
and suppliers.supplier_name = 'IBM';
Here is the code for Updating a VIEW that I tried (unsuccessfully) to
use with MS Access:
CREATE or REPLACE VIEW sup_orders AS
SELECT suppliers.supplier_id, orders.quantity, orders.price
FROM suppliers, orders
WHERE suppliers.supplier_id = orders.supplier_id
and suppliers.supplier_name = 'Microsoft';
Any knowledge you can pass my way would be appreciated!
Thanks!
jm
Access?
Here is the code for Creating a VIEW that I tried (unsuccessfully) to
use with MS Access:
CREATE VIEW sup_orders AS
SELECT suppliers.supplier_id, orders.quantity, orders.price
FROM suppliers, orders
WHERE suppliers.supplier_id = orders.supplier_id
and suppliers.supplier_name = 'IBM';
Here is the code for Updating a VIEW that I tried (unsuccessfully) to
use with MS Access:
CREATE or REPLACE VIEW sup_orders AS
SELECT suppliers.supplier_id, orders.quantity, orders.price
FROM suppliers, orders
WHERE suppliers.supplier_id = orders.supplier_id
and suppliers.supplier_name = 'Microsoft';
Any knowledge you can pass my way would be appreciated!
Thanks!
jm