|
|
CIS 2210 - Database Management and Design
Review for First Test
The following questions are provided to help you study for
the first test. Do not expect to see these exact questions on the test.
- What is the difference between data and information?
- What are some advantages to using a DBMS based database? What are
some disadvantages?
- What is unstructured data? Where is it likely to be found?
What is structured data? Where is is likely to be found?
What is semistructured data?
- What is an entity, with respect to databases?
- What is an instance, and how is it related to an entity?
- What are other names for attributes? What are they, generally?
- What is a general name for most files that are in a relational database?
- What are structural dependence and independence? Why do you want to
have one of them?
- How are relationships implemented in a relational database?
- How are attributes generally arranged in a table?
- What do rows generally represent in a table?
- What uniquely identifies each row in a table?
- What are the rules for calling a table a relation?
- What term is used for a relation that does not meet one of the tests
of a relation?
- What do we call a rule that controls the kind of data that is allowed
to go in a given field?
- When studying the business rules of a company, what will the nouns
and verbs usually correspond to?
- What is the difference between the DDL and the DML of a DBMS?
- What does it mean if we say that A is functionally dependent on B?
What does it mean if we say that A functionally determines B?
- What is entity integrity?
- What is referential integrity?
- What is a natural join?
- What is an index?
- What is the index that a DBMS will probably create by default?
- How must commands end in MySQL?
- What is a NULL value?
- What wildcard is used in MySQL to stand for all fields?
- How do you phrase an SQL command in order to see all rows in a table?
- What is an example of an optional clause to the SELECT command?
- Which clause of the SELECT command names the fields to be shown? Which
clause names the table?
- What are the comparison operators? What are their meanings?
- What do you do to change an SQL sort command to work in descending
order?
- What are the aggregate functions in SQL? Which one does not require
a numeric field to work?
- What are nested queries? In what order are they evaluated?
|