Computing (FOLDOC) dictionary
Jump to user comments
database (Commonly "join", but see also "
outer join") A
table also appears in a certain column of the second table.
select * from A, B
where A.x = B.y
The column names (x and y in this example) are often, but not
necessarily, the same.
(1998-11-23)