Querying a Database
Find all the students who have taken CSE444 in Winter, 1998.
S(tructured) Q(uery) L(anguage)
- select E.name
- from Enroll E
- where E.course=CSE444 and
- E.quarter=“Winter, 1998”
SQL also provides update facilities.
SQL: an acquired taste (try datalog first)