Pop Quiz 2 Flashcards
1
Q
Which function should be used to calculate the total of all values in a column?
A. Count
B. Sum
C. Total
A
Sum
2
Q
Based on the following table description, use SQL to list the complete STUDENT table.
STUDENT[StudentID, FirstName, LastName, Street, City, State, Zip]
A. SELECT all from STUDENT;
B. LIST all from STUDENT;
C. SELECT * from STUDENT;
A
SELECT * from STUDENT;