The benefits of a standard relational language include which of the following? Reduced training costs Increased dependence on a single vendor Applications are not needed All of these TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following query finds the total rating of the sailors who have reserved boat "103"? SELECT SUM(s.rating) FROM sailors s, reserves r WHERE s.sid = r.sid AND r.bid = 103 SELECT s.rating FROM sailors s, reserves r WHERE s.sid = r.sid AND r.bid = 103 SELECT SUM(s.rating) FROM sailors s, reserves r AND r.bid = 103; c) SELECT COUNT(s.rating) FROM sailors s, reserves r WHERE s.sid = r.sid AND r.bid = 103 TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is the correct order of keywords for SQL SELECT statements? SELECT, FROM, WHERE FROM, WHERE, SELECT SELECT,WHERE,FROM WHERE, FROM,SELECT TRUE ANSWER : ? YOUR ANSWER : ?
A dynamic view is one whose contents materialize when referenced. True False TRUE ANSWER : ? YOUR ANSWER : ?
You can add a row using SQL in a database with which of the following? ADD MAKE INSERT CREATE TRUE ANSWER : ? YOUR ANSWER : ?
The FROM SQL clause is used to... specify search condition specify what table we are selecting or deleting data FROM None of these specify range for search condition TRUE ANSWER : ? YOUR ANSWER : ?
The SQL WHERE clause: limits the row data are returned. limits the column data that are returned. Both A and B are correct. Neither A nor B are correct. TRUE ANSWER : ? YOUR ANSWER : ?
The condition in a WHERE clause can refer to only one value. True False TRUE ANSWER : ? YOUR ANSWER : ?
Select the right statement to insert values to the student table. INSERT VALUES INTO student ( INSERT VALUES ( INSERT INTO student VALUES ( INSERT student VALUES ( TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following do you need to consider when you make a table in SQL? Data types All of these Primary keys Default values TRUE ANSWER : ? YOUR ANSWER : ?