Correct Answer
verified
Multiple Choice
A) 12
B) 225
C) 255
D) 30
Correct Answer
verified
True/False
Correct Answer
verified
True/False
Correct Answer
verified
Multiple Choice
A) SELECT lastname, firstname
FROM customers NATURAL JOIN books
WHERE title LIKE '%BUSI%';
B) SELECT lastname, firstname FROM customers c, books b, orders o, orderitems oi
WHERE title LIKE '%BUSI%';
C) SELECT lastname, firstname FROM customers c, books b, orders o, orderitems oi
WHERE c.customer# = o.customer# AND o.order# = oi.order# AND
Oi) isbn = b.isbn AND title LIKE '%BUSI%';
D) none of the above
Correct Answer
verified
Multiple Choice
A) OUTER JOIN
B) CROSS JOIN
C) JOIN...USING
D) none of the above
Correct Answer
verified
Multiple Choice
A) IN
B) OR
C) AND
D) both a and b
Correct Answer
verified
Multiple Choice
A) SELECT name, title, retail
FROM books, publisher
WHERE cost > 35.95;
B) SELECT name, title, retail FROM books NATURAL JOIN publisher
WHERE cost > 35.95;
C) SELECT p.name, b.title, b.retail FROM books b NATURAL JOIN publisher p
WHERE b.cost > 35.95;
D) none of the above
Correct Answer
verified
True/False
Correct Answer
verified
Short Answer
Correct Answer
verified
True/False
Correct Answer
verified
Showing 121 - 131 of 131
Related Exams