Understanding Databases
Understanding Databases Cont.
Misc
Database Commands
100

“It stores data.”

Database

100

The rules and structure of the database are called its ________

Schema

100

______________are how data is entered into and often viewed from your database

Forms

100

The SQL command to create a database is ________

CREATE

200

Name 2 types of Database Servers or services

Oracle, Microsoft SQL, or
MySQL), or accessed via the cloud (Amazon Web Services, Microsoft Azure,
Google,

200

__________ __________is the actual tables, columns, and relationships created inthe RDBMS. Many database management tools have a process for creating a
____________ _________ is based on a logical schema, or the _________ ___________ can be
created manually.

physical schema

200

______________are the real power of databases. They let you mine your data to find the
specific information that you need

Queries

200

If you forget to create the column during table creation or are working with an existing table, managing columns is done with the _________ command

ALTER

300

It’s called this because the data has two dimensions, rows and columns

Flat file

300

Each row in a table is called a _________

Record.

300

________________are generated to answer specific questions. For example, a manager could have an automatic ________ that generates the list of new clients in the last week, as opposed to viewing the list in a form. Think of them as preformed
queries.

Reports

300

The command to delete tables or databases

DROP

400

________ __________ __________  is the ability for multiple users to access a database at once and one of the many advantages of a database

Multiple Concurrent Users

400

Columns in a table are called __________

Fields

400

A database that has no organization to its data usually consist of videos, web pages, emails, documents, texts, and social media

Non-structured Data

400

The ___________command is used to insert records into an existing table

INSERT

500

The ability of Databases to stretch to meet the user or organizational requirements

Scalability

500

________and _________ make up a table

Records

Fields

500

___________- ____________ ___________is generally thought of as unstructured data that has been tagged with metadata. Metadata is literally
data about data.

Semi-structured Data

500

___________command is used to update existing data in the database.

UPDATE

600

Users expect their data to be stored indefinitely, and this is what is meant by______ _________

Data Persistence

600

For a table in a database to be relational, it must have a _________ __________. In fact, its
creation is mandatory when a table is created. A _______ _________ is one or more fields whose data is used to identify a record uniquely

Primary Key

600

If you forget to create the column during table creation or are working with an existing table, managing columns is done with the _________ command

ALTER

600

Queries use the _________ command to identify and display the data the user needs.

SELECT

700

A database that is  predictable and organized, with tables containing columns and rows of text or
numerical data.

Relational Databases

700

A ________  _________is one or more columns in a
table that refers to the primary key in another table. Foreign keys are not required, and they don’t need to be officially designated in the RDBMS
(although they can be defined by the administrator in the index).

Foreign key

700

You have an address book for a small business with contact information for about 100 clients. The address book is used by two people. Which solution should you use to store the data?

A. Spreadsheet

B. Relational database

C. Word processing software

D. Non-relational database

A. Spreadsheet

 For a small number of rows, with only two people accessing the data, a spreadsheet is fine in this situation

700

Command that deletes records

DELETE