Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Oracle 12C SQL
Quiz 13: Views
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 81
Multiple Choice
Which type of view is created from the following command? CREATE VIEW prices AS SELECT isbn,title,cost,retail,retail-cost profit FROM books;
Question 82
Multiple Choice
A view based on the contents of one table that uses an expression for one of the columns is considered a(n) ____ view.
Question 83
Multiple Choice
Which type of view is created by the following command? CREATE VIEW OR REPLACE outstanding AS SELECT customer#,order#,orderdate,shipdate FROM orders WHERE shipdate IS NULL;
Question 84
Multiple Choice
Which type of view is created from the following SQL statement? CREATE VIEW balancedue AS SELECT customer#,order#,SUM(quantity*retail) amtdue FROM customers NATURAL JOIN orders NATURAL JOIN Orderitems NATURAL JOIN books GROUP BY customer#,order#;