Solved

Given This SQL Statement,match the Question with the Correct Answer

Question 95

Matching

Given this SQL statement,match the question with the correct answer: SELECT Contribution.SSN,Contribution.PayDate,Contribution.GrossPay,Contribution.[401KEmployee],Contribution.[401KMatch],Contribution.[401KTotal] INTO Archive FROM Contribution WHERE (((Contribution.SSN)="456667778"))ORDER BY Contribution.PayDate.

Premises:
What would need to be done to sort the records in descending order?
What would need to be done to not create the new table?
What would need to be done to change the name of the new database to "Old"?
What would need to be done to sort by the default field?
What would need to be done to delete the criteria?
Responses:
ORDER BY Contribution.PayDate DESC
Delete WHERE (((Contribution.SSN)="456667778"))
Delete ORDER BY Contribution.PayDate
INTO Old
Delete INTO Archive

Correct Answer:

What would need to be done to sort the records in descending order?
What would need to be done to not create the new table?
What would need to be done to change the name of the new database to "Old"?
What would need to be done to sort by the default field?
What would need to be done to delete the criteria?
Related Questions