Lesson 1: SQL Review Flashcards

(17 cards)

1
Q

Data

A

Raw facts that need to be processed to become meaningful or useful.

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

Data redundancy

A

Data that is duplicated or repeated in more than one location in the database.

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

Database

A

A collection of related data that is organized so that it can be easily accessed, managed, and updated. A file cabinet could be considered a paper database. This SQL course is about electronic databases

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

Database management system

A

The software that handles the storage, retrieval, and updating of the data in the computer system.

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

Column

A

One data item that is a field in a table. Example: name, gender, birthdate.

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

Information

A

Data that has been processed and has meaning and context; can be used to make decisions.

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

Primary key

A

The unique field in a database table used to create the relationship between two tables.

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

Row

A

One record in a table made up of several columns.

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

Table

A

Collection of data about one person, place, or thing. Made up of columns (fields) and rows (records).

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

SSMS

A

SQL Server Management Studio; the database management system used in this course.

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

SQL

A

Pronounced as “sequel” or S-Q-L; it is the standard database management language that communicates with a relational database.

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

New Query button

A

Opens a new code window for a SQL query.

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

Execute button

A

The button to run the SQL query.

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

Object Explorer

A

In the SSMS where the list of databases is located.

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

SQL Script file

A

A file that contains SQL code that can copied into the SQL query window to be executed.

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

Comments

A

Written words in the code that the computer ignores. Comments are information for the programmer.

17
Q

The * (asterisk) in a SQL command

A

The * (asterisk) is considered a wildcard and means “all.” For example, SELECT * FROM Customer means to select all the records from the Customer table.