Relational Algebra:
Or: (written without using the join-operation (which is a short hand):
SQL:
SELECT fname, lname FROM employee, department WHERE dno=dnumber AND dname='Research' |
|
|
|
Example:
name ---------- Alice Theodore Joy Abner Micheal Alice Elizabeth |
|
|
|
(In CS544: mainly as a quety language and skip the delete/update commands)