Solved

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

Question 53

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 are the criteria being applied?
How are the records being sorted?
Where are these fields coming from?
What is the name of the new table?
How many fields will be involved?
Responses:
(((Contribution.SSN)="456667778"))
Contribution
Six
Paydate
Archive

Correct Answer:

What are the criteria being applied?
How are the records being sorted?
Where are these fields coming from?
What is the name of the new table?
How many fields will be involved?
Related Questions