chapter 5 review Flashcards
SQL functions fit into two board categories:
d
m
data manipulation language
data definition language
basic commands have a vocab of fewer than….. words?
100
ensure that a column will not have duplicate values?
unique
validate data in an attribute
check
create a dynamic subset of rows and columns from one or more table
create view
restrict the selection of rows based on a conditional expression
where
….creates physical files that hold a database
RDBMS
t or f: RDMS are the same
false
…. verifies that only registered users are able to access DB
DBMS
a key that is both not a null and a unique specification
primary key
….. will automatically enforce referential integrity for foreign key
RDBMS
command sequence ends with a…?
semicolon
ensure that column doesn’t accept nulls
not null constraints
ensure that all values in the column are unique
unique constraints
assign value to an attribute when a new row is added to the table
default constraints
validate data when the attribute value is entered
check