Lesson 9: Keeping the Database Up to Date Flashcards
Integrity
This is a quality of being honest. In database terms, when data is used, it is intact and unchanged. Accuracy and consistency are elements of data integrity.
Accuracy
A quality of data that it must be correct. Accuracy is one of the elements of data integrity.
Consistency
A quality of data that, when changes take place in the database, they follow defined rules. Consistency is one of the elements of data integrity.
ALTER TABLE
A SQL statement used to add, delete, or modify columns or constraints on an existing table.
UPDATE…SET
A SQL statement used to modify existing rows in a table
DELETE
A SQL statement used to delete existing rows in a table.
BETWEEN
An operator to select values within a given range. The begin and end values are included.
IS NULL
A SQL condition that will test a column to see if it is NULL (empty).