Relational Implementation With SQL Flashcards
Schema Owner
Person who has authority and responsibility for granting access to tables columns and views in a database schema,
Schema Definition
Description of database to the DBMS.
Multiset
A set that may have duplicate entries.
Simple Query
A query involving only one database table.
SELECT clause
Identifies the columns desired in the query.
FROM clause
Lists the existing tables referenced by the query.
WHERE clause
Gives the condition for selecting rows from identified tables.
Comparison Operators
= , <>,<,>,<=,>=
Boolean Connectives
AND-OR-NOT
Wild Card Characters
Special symbols that stand for unspecified strings of characters.
Cartesian Product
Result of pairing each row in one table withe every row in another table.
Alias
Alternate name given to a relation.
Correlated Subquery
A subquery whose result depends on the row being examined by an outer query.
EXISTS operator
Evaluates to true if resulting set is not empty.
NOT EXISTS operator
Evaluates to ture if resulting set is empty.