[prev] 23 [next]

Query Evaluator

Most common function of relational DBMSs
  • read an SQL query
  • return a table giving result of query
E.g.

select s.id, c.code, e.mark
from   Students s, Courses c, Enrolments e
where  s.id = e.student and e.course = c.id;