Java Games: Flashcards, matching, concentration, and word search.

Database Terms

AB
AutoNumberA field type wherein the values are automatically incremented each time a new record is created. Typically used for Artificial or Surrogate Primary keys.
Calculated fieldA field which is not in an underlying table but is calculated via a query expression.
Data typeThe kind of data - numeric, text, etc., that a field contains.
EntityUsually an object such as a customer or product but also events such as sales or purchases.
FieldA single element of information such as first name or city.
NULLSounds like it should mean NIL, or nothing but it doesn't. It means missing or unknown.
One-to-many relationshipA relationship between two entities. An example would be an EMPLOYEE table with primary key EmpNo, and a DEPENDENTS table with a foreign key. Referential integrity can be used to ensure child records are not inserted without a valid parent.
Primary KeyThe column or columns used to uniquely identify every row in a table.
QueryA question. A database operation that retrieves data from a database.
Referential IntegrityRefers to the integrity of the foreign key references in a database. All foreign keys should refer to valid primary keys in other tables.
RelationshipAn association between two or more entities such as that between DEPARTMENTS and EMPLOYEES.
SQLVirtually all relational databases store and retrieve data via this coding.
Validation RuleA rule used to enforce domain integrity. I.e to ensure column values are valid. Examples: make sure all amounts are positive, dates are greater than or equal to today, etc.
Relational DatabaseA database with multiple related tables
Flat file DatabaseA database with a single table
TableAll the records associated with an entity, eg customer
RecordAll the information about one person or thing
FormA view of a database to input or view (usually) one record. Also used to enable navigation and a user interface

This activity was created by a Quia Web subscriber.
Learn more about Quia
Create your own activities