VOOZH about

URL: https://www.coursera.org/learn/data-management-for-analytics-part-2

⇱ Data Management for Analytics Part 2 | Coursera


Data Management for Analytics Part 2

Ends soon! Keep adding new skills with 10,000+ programs for $239 (usually $399). Save now.

Data Management for Analytics Part 2

Included with

β€’

Learn more

Ask Coursera

Gain insight into a topic and learn the fundamentals.
1 week to complete
at 10 hours a week
Flexible schedule
Learn at your own pace
Build toward a degree

Gain insight into a topic and learn the fundamentals.
1 week to complete
at 10 hours a week
Flexible schedule
Learn at your own pace
Build toward a degree

There are 6 modules in this course

This course will offer you an opportunity to learn the fundamental concepts and emerging technologies in data storage and data governance. It presents a balanced theory-practice focus and covers Structured Query Language, and two flavors of NoSQL databases in MongoDB and Neo4j graph database. It also includes a brief introduction to big data management including hadoop, MapReduce, and Apache Spark. By the end of this part 2 course on data analytics, you will have a foundational understanding of the theory and applications of database management to support data analytics, data mining, machine learning, and artificial intelligence.

This module first presents an overview of the structured query language (SQL) Data Definition Language (SQL DDL) to define a relational data model. It examines the schema creation, table creation, drop command, and alter command. Various syntaxes are illustrated with explicit examples. This module also discusses the SQL Data Manipulation Language (SQL DML) used to retrieve data, update data, insert new data, and delete existing data. The focus is on SQL INSERT statements for inserting data into tables and some simple SQL SELECT statements. More complex SQL SELECT statements will be discussed in later modules along with SQL DELETE and SQL UPDATE statements.

What's included

1 video10 readings7 assignments

1 videoβ€’Total 1 minute
  • Meet Your Facultyβ€’1 minute
10 readingsβ€’Total 113 minutes
  • Course Introductionβ€’2 minutes
  • Syllabus - Data Management for Analytics Part 2β€’10 minutes
  • Academic Integrityβ€’1 minute
  • What is SQL?β€’15 minutes
  • SQL Data Definition Language (DDL)β€’5 minutes
  • A DDL exampleβ€’20 minutes
  • DROP and ALTER commandβ€’10 minutes
  • SQL INSERT statementβ€’15 minutes
  • SQL SELECT statementβ€’30 minutes
  • Module 1 Summaryβ€’5 minutes
7 assignmentsβ€’Total 13 minutes
  • Check Your Prior Knowledgeβ€’3 minutes
  • Assess Your Learning: What is SQL?β€’1 minute
  • Assess Your Learning: SQL Data Definition Language (DDL)β€’2 minutes
  • Assess Your Learning: A DDL Exampleβ€’2 minutes
  • Assess Your Learning: DROP and ALTER Commandβ€’2 minutes
  • Assess Your Learning: SQL INSERT Statementβ€’1 minute
  • Assess Your Learning: SQL SELECT statementβ€’2 minutes

This module continues the discussion of the SQL data manipulation language (DML) SELECT statement. It introduces various aggregate functions: COUNT, SUM, AVG, VARIANCE, MIN, and MAX, which are used to summarize information from database tuples. This is followed by the GROUP BY/HAVING clause, which allows the application of aggregate functions to subgroups. This module then discusses join queries that allow the user to combine or join data from multiple tables. The inner join queries feature a β€œwhere” clause that matches one or multiple columns from two tables. The left outer join, right outer join, and full outer join can be used to keep all the tuples of one or both tables in the result, regardless of whether or not they have matching tuples in the other table. All queries in this module use the Wine database in the online playground and can be executed there.

What's included

1 video6 readings6 assignments

1 videoβ€’Total 4 minutes
  • Aggregate Functionsβ€’4 minutes
6 readingsβ€’Total 85 minutes
  • Queries with Aggregate Functionsβ€’25 minutes
  • Queries with GROUP BY/HAVINGβ€’10 minutes
  • Queries with ORDER BYβ€’10 minutes
  • Inner Joinsβ€’20 minutes
  • Outer Joinsβ€’15 minutes
  • Module 2 Summaryβ€’5 minutes
6 assignmentsβ€’Total 11 minutes
  • Check Your Prior Knowledgeβ€’2 minutes
  • Assess Your Learning: Queries with Aggregate Functionsβ€’2 minutes
  • Assess Your Learning: Queries with GROUP BY/HAVINGβ€’1 minute
  • Assess Your Learning: Queries with ORDER BYβ€’2 minutes
  • Assess Your Learning: Inner Joinsβ€’2 minutes
  • Assess Your Learning: Outer Joinsβ€’2 minutes

This module presents more complex SQL queries. It introduces nested queries where a complete SELECT FROM block appears in the WHERE clause of another query. The subquery or inner block is nested in the outer block and there can be multi-level nesting. The query optimizer usually flattens the nested query into multiple queries and executes them sequentially from the innermost to the outermost level. This module also examines the correlated nested query, where the inner block uses one or more columns of the table defined in the outer block. In this case, the query cannot be flattened, and the inner block subquery must be evaluated for each tuple of the table (also used in the inner block). The usage of the operators >= ALL and > ANY is discussed. The former can be used to find the highest or largest values whereas the latter can be used to exclude the lowest or smallest values. All queries in this module use the Wine database in the online playground and can be executed there. Finally, this module examines the DELETE and UPDATE statements that can be used to delete or modify data. It concludes with a brief discussion of SQL views.

What's included

2 videos10 readings10 assignments

2 videosβ€’Total 8 minutes
  • Nested Query - Correlated Queryβ€’4 minutes
  • ALL/ANY/EXISTS/NOT EXISTSβ€’4 minutes
10 readingsβ€’Total 135 minutes
  • Nested Queriesβ€’15 minutes
  • Nested Correlated Queriesβ€’20 minutes
  • Queries with ALL/ANYβ€’15 minutes
  • EXISTS/NOT EXISTS functionsβ€’10 minutes
  • Subqueries in SELECT/FROMβ€’10 minutes
  • Set Operationsβ€’15 minutes
  • DELETE Statementβ€’15 minutes
  • UPDATE Statementβ€’15 minutes
  • SQL Viewsβ€’15 minutes
  • Module 10 Summaryβ€’5 minutes
10 assignmentsβ€’Total 19 minutes
  • Check Your Prior Knowledgeβ€’3 minutes
  • Assess Your Learning: Nested Queriesβ€’2 minutes
  • Assess Your Learning: Nested Correlated Queriesβ€’2 minutes
  • Assess Your Learning: Queries with ALL/ANY Knowledgeβ€’2 minutes
  • Assess Your Learning: EXISTS/NOT EXISTS Functionsβ€’2 minutes
  • Assess Your Learning: Subqueries in SELECT/FROMβ€’1 minute
  • Assess Your Learning: Set Operationsβ€’2 minutes
  • Assess Your Learning: DELETE Statementβ€’2 minutes
  • Assess Your Learning: UPDATE Statementβ€’2 minutes
  • Assess Your Learning: SQL Viewsβ€’1 minute

This module introduces a couple of extensions to the Relational Database Management Systems (RDBMSs). We will start by reviewing the core components of the relational model and its limitations. Subsequently, the module explores methods for extending relational databases, starting with a thorough review of triggers and stored procedures as pivotal mechanisms for augmenting the activity of RDBMSs. The module concludes by delving into the intricacies of recursive queries, a powerful extension to the SQL language.

What's included

4 readings4 assignments

4 readingsβ€’Total 60 minutes
  • Limitations of the relational modelβ€’10 minutes
  • Active Relational Database Management System Extensions: Triggers and Stored Proceduresβ€’25 minutes
  • Recursive SQL Queriesβ€’20 minutes
  • Week 11 Summaryβ€’5 minutes
4 assignmentsβ€’Total 8 minutes
  • Check Your Prior Knowledgeβ€’2 minutes
  • Assess Your Learning: Limitations of the relational modelβ€’3 minutes
  • Assess Your Learning: Active Relational Database Management System Extensions: Triggers and Stored Proceduresβ€’2 minutes
  • Assess Your Learning: Recursive SQL Queriesβ€’1 minute

This module presents an overview of the NoSQL movement and distributed systems. MongoDB NoSQL database is discussed at the introductory level. MongoDB is intended for storing documents such as resumes, legal documents, books, etc. It does not use any schema or data model, and stores documents as collections β€” which store a collection of attributes labeled and unordered that represent semi-structured items.

What's included

5 readings5 assignments

5 readingsβ€’Total 70 minutes
  • The NoSQL movementβ€’20 minutes
  • Key-Value Stores and Distributed Systemsβ€’10 minutes
  • Document Stores and MongoDBβ€’20 minutes
  • Aggregation with MapReduceβ€’15 minutes
  • Module 5 Summaryβ€’5 minutes
5 assignmentsβ€’Total 7 minutes
  • Check Your Prior Knowledgeβ€’1 minute
  • Assess Your Learning: The NoSQL movementβ€’2 minutes
  • Assess Your Learning: Key-Value Stores and Distributed Systemsβ€’1 minute
  • Assess Your Learning: Document Stores and MongoDBβ€’2 minutes
  • Assess Your Learning: Aggregation with MapReduceβ€’1 minute

This module continues the discussion of the NoSQL database. The graph theory and Neo4j graph database are discussed at the introductory level. The Neo4j is a graph database that applies graph theory to information storage. It consists of nodes and edges, both of which can store information. Graph databases are particularly useful in modeling social networks such as X (formerly known as Twitter) and Facebook. In a way, a graph database is a hyper-relational database where join tables are replaced by more interesting and semantically meaningful relationships that can be navigated (graph traversal) and/or queried, based on graph pattern matching.

What's included

5 readings4 assignments

5 readingsβ€’Total 42 minutes
  • A Brief Introduction to Graph Theoryβ€’5 minutes
  • Graph-based Databasesβ€’10 minutes
  • Neo4j and Cypher Query Languageβ€’25 minutes
  • Module 6 Summaryβ€’1 minute
  • Congratulations!β€’1 minute
4 assignmentsβ€’Total 5 minutes
  • Check Your Prior Knowledge β€’1 minute
  • Assess Your Learning: A Brief Introduction to Graph Theoryβ€’1 minute
  • Assess Your Learning: Graph-based Databasesβ€’1 minute
  • Assess Your Learning: Neo4j and Cypher Query Languageβ€’2 minutes

Build toward a degree

This course is part of the following degree program(s) offered by Northeastern University . If you are admitted and enroll, your completed coursework may count toward your degree learning and your progress can transfer with you.ΒΉ

Instructors

Northeastern University
8 Coursesβ€’1,210 learners

Explore more from Software Development

Why people choose Coursera for their career

πŸ‘ Image

Felipe M.

Learner since 2018
"To be able to take courses at my own pace and rhythm has been an amazing experience. I can learn whenever it fits my schedule and mood."
πŸ‘ Image

Jennifer J.

Learner since 2020
"I directly applied the concepts and skills I learned from my courses to an exciting new project at work."
πŸ‘ Image

Larry W.

Learner since 2021
"When I need courses on topics that my university doesn't offer, Coursera is one of the best places to go."
πŸ‘ Image

Chaitanya A.

"Learning isn't just about being better at your job: it's so much more than that. Coursera allows me to learn without limits."

Frequently asked questions

To access the course materials, assignments and to earn a Certificate, you will need to purchase the Certificate experience when you enroll in a course. You can try a Free Trial instead, or apply for Financial Aid. The course may offer 'Full Course, No Certificate' instead. This option lets you see all course materials, submit required assessments, and get a final grade. This also means that you will not be able to purchase a Certificate experience.

When you purchase a Certificate you get access to all course materials, including graded assignments. Upon completing the course, your electronic Certificate will be added to your Accomplishments page - from there, you can print your Certificate or add it to your LinkedIn profile.

Yes. In select learning programs, you can apply for financial aid or a scholarship if you can’t afford the enrollment fee. If fin aid or scholarship is available for your learning program selection, you’ll find a link to apply on the description page.

Financial aid available,