Question: QUESTION 24 How many rows will the following query return? SELECT * FROM doctor; 0 1 3 5 8 1.67 points QUESTION 25 How many

QUESTION 24
-
How many rows will the following query return? SELECT * FROM doctor;
0
1
3
5
8
1.67 points
QUESTION 25
-
How many rows will the following query return? SELECT * FROM doctor WHERE specid = 'ANE';
1
2
3
4
5
1.67 points
QUESTION 26
-
How many rows will the following query return? SELECT * FROM specialty WHERE specid = 'ANE';
1
2
3
4
5
1.67 points
QUESTION 27
-
What will be the result of the following query? SELECT sum(noofpatients) FROM doctor WHERE specid = 'SUR';
2
20
40
70
100
1.67 points
QUESTION 28
-
How many rows will the following query return? SELECT * FROM doctor, specialty WHERE doctor.specid = specialty.specid;
0
1
3
5
8
1.67 points
QUESTION 29
-
What will be the result of the following query? SELECT count(*) FROM doctor GROUP BY specid;
number 1
number 3
numbers 2 and 1
number 5
numbers 2, 1, and 2
1.67 points
QUESTION 30
-
What will be the result of the following query? SELECT docname FROM doctor WHERE noofpatients = (SELECT max(noofpatients) FROM doctor);
Jill
30
Linda
Lisa
RAD
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
