SQL Terms Flashcards

1
Q

What is database?

A

Adatabase is an organized collection of data,stored and retrieved digitally from a remote or local computer system. Databases can be vast and complex, and such databases are developed using fixed design and modeling approaches

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

What is DBMS?

A

DBMS stands for database management system. DBMS is a system software responsible for the creation, retrieval, updating, and management of the database.it ensures that our data is consistent, organized, and is easily accessible by serving as an interface between the database and its end -users or application software.

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

What is RDBMS? How is it different from DBMS?

A

RDBMS stands for relational database management system. The key difference is that RDBMS stores data in the form of a collection of tables,and relations can be defined between the common fields of these tables
. Most modern database management systems like MySQL Microsoft SQL server, oracle, IBM DB2, Amazon red shift are based on RDBMS.

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

What is SQL?

A

SQL stands for structured query language.it is the standard language for relational database management systems.it is especially useful in handling organized data comprised or entities (variables) and relations between different entities of data.

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

What is the difference between SQL and MySQL ?

A

SQL is a standard language for retrieving and manipulatingstructured databases. On the contrary, my SQL is a relational database management system like SQL server, oracle or IBM DB2, that is used to manage SQL databases..

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

What are tables and fields?

A

A table is an organized collection of data stored in the form of rows and columns. Columns can be categorized as vertical and rows as horizontal.

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

What is data analysis?

A

The process of analyzing, modeling, and interpret data to draw insights or conclusions. From the insights informed decisions can be made.

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

Responsibilities of date analysts.

A

Collects and analyses data statistical techniques used
Interpret and analyzes trends or patterns in complex data sets
Find opportunities for improvement in existing processes or areas
Assist in data mining, data cleansing, and data storage structure

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

Key skills for data analyst

A

Critical thinking
Communication
Data visualization
SQL

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

Data analysis process

A

Assembling/collecting → cleaning → interpreting → transforming → modeling

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

What is data cleaning?

A

Identifying, and then modifying, replacing, or deleting the incorrect incomplete, inaccurate, irrelevant, or missing portions of the data as the need arises

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

Data mining vs. Data profiling

A

Data mining: analyzing data to find relations that were not previously discovered. Emphasis on finding unusual records, detecting dependencies, and analyzing clusters. Analyzing large datasets to determine trends and patterns in them.

Data profiling: analyzing data’s individual attributes. Emphasis on providing useful information on data attributes such as data types, frequency, etc. Discovery and evaluation of enterprise metadata.

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

Data validation

A

Field level validation:validates data as and when it is entered into the field.

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

Explain outlier

A

Values in a data set that differ significantly from the mean of characteristic features of a dataset.
Best detected through box plots or standard deviation methods.

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

Normal distribution

A

The bell curve. Defines and measures now the values of a variable differ
In their means and standard deviations,

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

What is data visualization?

A

Graphical representation of info and data. Helps to easily see and understand trends, outlier, patterns, etc.

17
Q

Explain a hash table

A

Data structures that store data in an associate manner

18
Q

What are constraints
In SQL?

A
  • Not null
  • check
  • default
    -Unique
  • index
  • primary key
  • foreign key
19
Q

What is primary key?

A

Uniquely identifies each now in a table.it must contain unique values and has implicit not null constraint.

20
Q

Foreign key

A

Comprises of single or collection of fields in a table that essentially refers to the primary key in another table.

21
Q

What is a join?

A

SQL join is used to combine records (rows) from two or more tables in a database