Title: Which type of view is created with the following command? CREATE VIEW outstanding AS SELECT ... Post by: kinglazy on Jan 31, 2018 Which type of view is created with the following command? CREATE VIEW outstanding AS SELECT customer, order, orderdate, shipdate FROM orders WHERE shipdate IS NULL WITH CHECK OPTION;
a. complex b. partial c. simple d. none of the above Title: Which type of view is created with the following command? CREATE VIEW outstanding AS SELECT ... Post by: vulshafer15 on Jan 31, 2018 c
|