MembersThe tblMembers table contains six fields. The LastName, FirstName, and MemberType fields contain text. The MemberID, JoinDate, and Fee fields contain numbers. The MemberType field contains one of the following letters: F for Family membership, A for one Adult membership, Y for one Youth membership, and S for one Senior membership.
Write a SQL SELECT statement that selects the MemberID, LastName, and FirstName fields for all family members. Sort the records in descending order by the JoinDate field.

What will be an ideal response?


SELECT MemberID, LastName, FirstName FROM tblMembers
WHERE MemberType = 'F'
ORDER BY JoinDate DESC

Computer Science & Information Technology

You might also like to view...

Five steps in planning the interview are:

What will be an ideal response?

Computer Science & Information Technology

A form related to the main form that is not stored within the main form

a. Split form b. Linked form c. Embedded form

Computer Science & Information Technology

The data displayed by a view is updated based on the actions of ____.

A. Views B. Models C. Controllers D. Records

Computer Science & Information Technology

A(n) ________ is the association between tables where both tables contain a common field.

A. link B. data model C. relationship D. share point

Computer Science & Information Technology