60) Given the table STUDENT(StudentID, Name, Advisor), which of the following SQL
statements would be used to change the value of the Advisor field to ‘Smith’ for all rows in the
STUDENT table?
A) UPDATE STUDENT SET Advisor = ‘Smith’;
B) MODIFY STUDENT SET Advisor = ‘Smith’;
C) MODIFY Advisor SET STUDENT = ‘Smith’;
D) UPDATE Advisor = ‘Smith’;
E) SET STUDENT Advisor = ‘Smith’;
61) Which of the following standard SQL data types is not supported in Microsoft Access SQL?
A) Integer
B) Char(25)
C) VarChar(35)
D) Numeric(5,3)
E) DateTime
62) In Microsoft Access, standard SQL table creation syntax items not supported by Access SQL
can generally be implemented by ________.
A) setting the Data Types in Access table Design View
B) setting the field properties in Access table Design View
C) setting the relationship properties in the Edit Relationship dialog box
D) setting the referential integrity properties in the Edit Relationship dialog box
E) running an ALTER TABLE query in Access SQL
63) SQL stands for ________.