Introduction to Databases Flashcards

1
Q

What is data?

A

A collection of facts in a raw or unorganized form.

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

What is information?

A

Data that is organized in a way that gives it meaning, relevance, and usability.

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

What is a database?

A

A repository of data that allows users to retrieve, update, and analyze information. Databases are organized as groups of linked tables.

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

What is a relational database?

A

A relational database allows the tables to be linked to each other using a mutual element. For example, Customer ID might belong to both the CustomerID field and the Orders field.

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

What is a hierarchical database?

A

A hierarchical database organizes data using the parent-child format (one to many), where the parent can have many children, but children are only allowed to have one parent. For example, a customer might have multiple orders that hold multiple products.

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

What SQL statement keyword reads (queries) a table?

A

SELECT statement

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

What can be inserted, updated, and deleted from a table?

A

Data

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

What is an Entity Relationship Diagram?

A

It’s a map of different tables in a database to show which data categories are present in multiple tables. For example, AlbumId might show up in Album and the Track Table.

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

What is a view?

A

A view is like a saved query. When you use it, the database runs the query and shows you the results as a table. It can combine data from multiple sources.

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

What is a stored procedures

A

It is a set of SQL statements that you can save and reuse.

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

What is a user-defined function?

A

A function that is created by the user to perform specific actions that can be called within SQL queries. You would create a function and then reuse that function to return an answer or a table.

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

What is T-SQL?

A

It’s Microsoft’s version of SQL language and follows ANSI standards.

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

What is SQL Server Management Studio?

A

It is a tool to connect to SQL servers.

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

Are you able to connect to more than one SQL server from your SQL Server Management Studio?

A

Yes!

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