Notice that all of these collections of data existed before computers.
Tables have records (rows) and fields (columns).
Computer application that is designed to store, analyze, and manipulate data.
INSERT INTO contacts (LastName, FirstName, PhoneNumber)
VALUES ("Smith", "John", "860-223-9038");
SELECT * FROM contacts;
SELECT * FROM contacts WHERE LastName="Smith"
UPDATE contacts
SET PhoneNumber="392-394-9930"
WHERE LastName="Smith";
DELETE FROM contacts
WHERE LastName="Smith";
In addition to the major CRUD functions, database management systems can often process data.