Definitions
- Integrity constraint (IC): a rule with an empty head that describes some semantic property of data.
Example:
:- m(X,Y), m(X,Z), Y!=Z
- Semantic query optimization (SQO): the process of using integrity constraints in order to optimize the evaluation of a query.
Three types of SQO:
- Join elimination
- Restriction introduction
- Restriction elimination
|