Querying a Database
Find all the students who have taken CSE444 in Fall, 1997.
S(tructured) Q(uery) L(anguage)
- select E.name
- from Enroll E
- where E.course=CS444 and
- E.quarter=“Fall, 1997”
Query processor figures out how to answer the query efficiently.