Section 1

Preview this deck

Second Normal Form (2NF)

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

4 years ago

Date created

Mar 1, 2020

Cards (53)

Section 1

(50 cards)

Second Normal Form (2NF)

Front

When it is in first normal form and no nonkey column is dependent on only a portion of the primary key

Back

Database

Front

Structure that contains different categories of information and the relationships between these categories .

Back

MIN

Front

Calculates the minimum value in a numeric range

Back

AND

Front

All of the simple conditions must be met in order for the compound conditions to be true

Back

AVG

Front

Calculates the average value in a numeric range

Back

DELETE

Front

Deletes rows

Back

INSERT

Front

Adds rows to a table

Back

WHERE

Front

Retrieve rows for a specific thing or number

Back

Null

Front

Special value to represent cases which an actual value is unknown, unavailable, or not applicable

Back

Primary Key

Front

Unique identifier for a table.

Back

MAX

Front

Calculates the maximum value in a numeric range

Back

Entity

Front

Like a noun, a person, place, thing, or event

Back

One-To-Many Relationships

Front

Ex. One sales rep is associated with many customers.

Back

Functional Dependence

Front

A simple idea

Back

Compound condition

Front

connecting two or more simple conditions, with the AND, OR, or NOT, operators.

Back

ORDER BY

Front

List data in a specific order

Back

First Normal Form (1NF)

Front

A table that does not contain a repeating group

Back

VARCHAR(n)

Front

Alternative to CHAR that stores a character string up to "n" characters long. Only occupies amount of characters used

Back

NOT NULL

Front

Command in which you indicate which columns cannot contain null values

Back

NOT

Front

reverses the truth of the original conditions

Back

A table is

Front

A collection of rows and columns

Back

Simple condition

Front

has the form column name, comparison operator, the either another column name or a value

Back

Data Type

Front

Type of data the column can contain as well as the max number of characters or digits the column can store

Back

Restrictions placed on table and columns

Front

-Names cannot exceed 30 characters -Names must start with a letter -Names can contain letters, numbers, and underscores -Names cannot contain spaces

Back

BETWEEN

Front

Lets you specify a range of values

Back

Drop Table Command

Front

Deletes a table

Back

Computed Column

Front

Does not exist in the database but can be computed using data in the existing columns

Back

LIKE

Front

Uses one or more wildcard characters to test for a pattern match

Back

CHAR(n)

Front

Stores a character string "n" characters long. Use: Columns containing letters, special characters, and numbers not used in calculations

Back

A table column in common database terminology is also referred to as a(n):

Front

Tuple

Back

Asterisk (*)

Front

Indicate that you mean all columns

Back

COUNT

Front

Counts the number of rows in the table

Back

CREATE TABLE

Front

List, columns, data types, and column length

Back

DATE

Front

Stores dates

Back

INT

Front

Store integers (numbers without a decimal part)

Back

What acronym refers to all of the major functions that are implemented in relational database applications?

Front

Create, Read, Update, Delete (CRUD)

Back

Nonkey Column

Front

A column that is not part of the primary key

Back

DESCRIBE

Front

Lists all the columns in a table and their properties

Back

Attribute

Front

Property of an entity. Such as, color, height, identification number, and office numbers.

Back

Relationship

Front

Association between entities.

Back

Third Normal Form (3NF)

Front

When a table is in second normal form and the only determinants it contains are candidate keys

Back

SMALLINT

Front

Store integers but the valid range is smaller

Back

UPDATE

Front

Changes a value in a table

Back

OR

Front

If any of the simple conditions is true then the compound condition will be true

Back

Normalization

Front

Identifying the potential problems and implementing the ways to correct them

Back

Relation

Front

Two-dimensional table in which entries in the table are single-valued, each column has a distinct name, all values in the column match the name, the order of the rows and columns is immaterial, and each row contains unique values.

Back

Aggregate Functions

Front

Calculate sums, averages, counts, maximum values, and minimum values

Back

A relational database is:

Front

A collection of data items organized as a set of formally-described tables from which data can be accessed

Back

DECIMAL(p,q)

Front

Stores a decimal number "p" digits long with "q" of the digits being decimal places to the right of the decimal point. {For example: (5,2) indicates a number with 3 places to the left and 2 places to the right}

Back

Script File or Script

Front

Text file

Back

Section 2

(3 cards)

DISTINCT

Front

Eliminates duplicate values in the query results

Back

GROUP BY clause

Front

Lets you group your data on a particular column

Back

HAVING clause

Front

Limits the groups that are included in the results

Back