Slideshow:
<Query> ::= SELECT <SelList>
FROM <FromList>
WHERE <Condition>
<SelList> ::= <Attribute> |
<Attribute> , <SelList>
<FromList> ::= <Relation> |
<Relation> , <FromList>
<Condition> ::= <Condition> AND <Condition> |
<Attribute> IN ( <Query> ) |
<Attribute> = <Attribute> |
<Attribute> LIKE <Pattern>
|
|
StarsIn( movieTitle, movieYear, starName )
The movie movieTitle made in movieYear features movie star starName
|
|
|