Ch.9 Databases Flashcards
database
an example of application software to store and manipulate data
table
a set of data about one type of object e.g. students
field
an individual piece of data e.g. date of birth
record
all of the records in a table about one object
e.g. all the personal details about one student
data type
the characteristics of a piece of data
common data types: string, integer, real, boolean
boolean
a data type (true or false)
integer
a data type (whole numbers)
real
a data type (decimal numbers)
primary key
a unique identifier for a record
structured query language (SQL)
a standard language used to define and manipulate databases
script
a set of statements that are executed
logical operator
a symbol that performs a comparison resulting in true or false
e.g. =, ≠, <, >,
boolean operator
a symbol that joins multiple logical comparisons
e.g. AND, OR, NOT