Basic Query Structure

Queries in SQL have the following query structure:

select A1, A2, ..., An
from r1, r2, ..., rm
where P

This is equivalent to the following relational algebra expression, and will output a relation.

Last updated