Glossary

SELECT (Restriction)

choosing rows that satisfy a condition — corresponds to the SQL **WHERE** clause. 2. **PROJECT (Projection)** — choosing specific columns — corresponds to the **column list** in the SQL SELECT clause. 3. **JOIN** — combining rows from two tables based on a matching condition — corresponds to the SQL

Learn More

Related Terms