Chapter 9 Definitions Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

Define database

A

A persistent structured collection of data that allows people to extract information in a way that meets their needs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Define single-table database

A

A database that contains only one table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Define table

A

A collection of related records in a databaseD

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Define record

A

A collection of fields that describe one item

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Define field

A

A database table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Define data type

A

A classification of how data is stored and displayed, and of which operations that can be performed on the stored value

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Define primary key

A

A field in a database that uniquely identifies a recordq

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Define SQL

A

Structured Query Language - the standard query language for writing scripts to obtain useful information from a relational database.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Define SQL scripts

A

A list of SQL commands that perform a given task; often stored in a file so the script can be reused

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Define SELECT

A

An SQL command that fetches specified fields (columns) from a table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Define FROM

A

An SQL command that identifies the table to use

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Define WHERE

A

An SQL command to include only those records (rows) in a query that match a given condition

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Define ORDER BY

A

An SQL command that sorts the results from a query by a given column either alphabetically or numerically

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Define SUM

A

An SQL command that returns the sum of all the values in a field (column)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Define COUNT

A

An SQL command that counts the number of records (rows) in which the field (column) matches a specified condition; used with SELECT

How well did you know this?
1
Not at all
2
3
4
5
Perfectly