All Terms Flashcards

1
Q

What are the ‘3 V’s”?

A

Three basic characteristics of Big Data databases: volume, velocity, and variety.

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

What is abstract data type(ADT)?

A

Data type that describes a set of similar objects with shared and encapsulated data
representation and methods. An abstract data type is generally used to describe complex
objects. See also class.

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

What is an ad-hoc query?

A

A “spur-of-the-moment” question.

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

What is an alias?

A

An alternative name for a column or table in a SQL statement.

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

What is alter table?

A

Alter table is the SQL command used to make changes to table structure. When the command is followed by
a keyword (ADD or MODIFY), it adds a column or changes column characteristics.

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

What is the American National Standards Institute (ANSI)?

A

The group that accepted the DBTG recommendations and augmented database standards in
1975 through its SPARC committee.

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

What is an analytical database?

A

A database focused primarily on storing historical data and business metrics used for tactical or
strategic decision making.

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

What is AND?

A

The SQL logical operator used to link multiple conditional expressions in a WHERE or HAVING
clause. It requires that all conditional expressions evaluate to true.

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

What is the application programming interface (API)?

A

Software through which programmers interact with middleware. An API allows the use of
generic SQL code, thereby allowing client processes to be database server-independent.

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

What is a query?

A

A query is a command for a database that typically inserts new data, retrieves data, updates data, or deletes data from a database.

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

What is query language?

A

A query language is a computer programming language for writing database queries.

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

What is meant by ‘CRUD’ operations?

A

The four common queries are sometimes referred to as CRUD operations, an acronym for Create, Read, Update, and Delete data.

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

What is the standard query language for relational databases?

A

Structured Query Language (SQL)

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

What is a statement in SQL?

A

An SQL statement is a database command, such as a query that inserts, retrieves, updates, or deletes data:

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

What are four of the SQL statements?

A

INSERT inserts rows into a table.

SELECT retrieves data from a table.

UPDATE modifies data in a table.

DELETE deletes rows from a table.

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