Mô tả

SQL and MySQL are incredibly powerful tools for managing and analyzing relational databases, and a skill that every Analyst and Business Intelligence professional should have in the arsenal.


In this course, you’ll play the role of a business owner who just acquired Maven Movies, a brick and mortar DVD rental shop. Using only a MySQL database and MySQL Workbench, your mission is to learn everything that you can about your new business; including your inventory, staff, and customer behavior.


But don't worry, you're not alone! We'll be right here to guide you from start to finish, sharing crystal clear explanations, MySQL pro tips and best practices, and course quizzes, projects and homework assignments to test your SQL and database analysis skills along the way.


COURSE OUTLINE:


  • SQL Intro & MySQL Setup

    We’ll start with a quick intro to the SQL landscape and it's common "flavors" (MySQL, SQLite, PostgreSQL, etc), then download and install the tools that we'll need to access and explore our MySQL database (MySQL Community Server + MySQL Workbench)


  • SQL Database Fundamentals (Part 1)

    Once we have our tools installed, we'll quickly review some database fundamentals and begin to explore the 16 tables contained within our MySQL database, containing information about Maven Movies customers, inventory, and transactions.


  • Analyzing Data from Single Tables with MySQL

    In this section we'll start exploring and extracting information from individual tables in our MySQL database, and practice writing SQL queries to select, filter, sort and group our data.


    [MID-COURSE MYSQL PROJECT]


  • SQL Database Fundamentals (Part 2)

    The second half of the course is all about anayzing data from multiple tables in MySQL, so we'll begin with a quick review of relational databases and database analysis: primary vs. foreign keys, relationship cardinality, normalization, etc.


  • Analyzing Multiple Tables via MySQL JOINS

    In this section, we'll review the most common types of SQL joins (INNER, LEFT, RIGHT, OUTER, etc), and explore some more complex MySQL queries to analyze data that bridges multiple tables in our database.


    [FINAL MYSQL PROJECT]


IMPORTANT NOTE: This course does NOT cover building, altering, or maintaining SQL/MySQL databases. Our goal here is to focus on data exploration and database analysis using MySQL and MySQL Workbench (we'll cover database administration tools in a separate course).

______________________________


Enroll today and get LIFETIME access to:

  • 5+ hours of high-quality video

  • Downloadable MySQL ebook

  • Quizzes and homework assignments

  • Mid-course and Final SQL projects

  • 30-day money-back guarantee

If you’re looking for a hands-on, practical guide to mastering data analysis with SQL/MySQL, this is the course for you!


Happy analyzing!

-John (Lead SQL Instructor & MySQL Expert, Maven Analytics)


______________________________

Looking for the full business intelligence stack? Search for "Maven Analytics" to browse our full course library, including Excel, Power BI, MySQL, and Tableau courses!


See why this is one of the TOP RATED SQL/MySQL Courses on Udemy:

"Clear presentation of information and with enough repetition of important SQL concepts to help make the information memorable. Loved the frequent practice examples and code debugging exercises!"

- Maggi M.

"I totally loved this course! Everything was very easy to understand, but it moved at a fast enough pace that I never got bored. I learned SO much about MySQL and had fun doing it. In fact, at the end of the day I didn't want to stop learning -- I wanted to keep charging on to the next lesson!"

- Ann S.

"John's deep understanding of SQL and database analysis and ability to explain those tools to a newcomer with 0 experience, is really unmatched. I've taken other SQL and MySQL courses and tried reading books, but this course is by far the easiest way to understand SQL. Excited to see more courses from John!"

- Steven M.

Bạn sẽ học được gì

Yêu cầu

Nội dung khoá học

8 sections

Getting Started

5 lectures
Course Structure & Outline - MySQL Database for Beginners
01:36
READ ME: Important Notes for New Students
02:13
DOWNLOAD: Course Resources
00:20
Introducing the Course Project - Play the Role of Business Analyst
00:33
Setting Expectations - Focus on Business Analysis, NOT MySQL Administration
01:19

MySQL Intro & Setup

11 lectures
Introduction to Installing MySQL and MySQL Workbench for Beginners
00:19
Why Learn SQL From Scratch? The Ultimate MySQL Bootcamp is Worth It!
01:09
History & SQL "Flavors" (MySQL, MS SQL Server, SQL Lite, T SQL, Microsoft SQL)
02:25
MySQL Installation Overview
01:21
Mac Download - Community Server
04:53
Mac Download - MySQL Workbench
02:50
PC Download - Community Server + Workbench
07:41
Connecting Workbench to the Server
01:56
MySQL Workbench Interface
01:37
Creating the Maven Movies Database
01:37
QUIZ: MySQL Intro & Setup
5 questions

Single Table Analysis (PART 1)

47 lectures
Introduction to Databases and SQL Querying
00:24
Getting to Know the Database
03:52
The "Big 6" Statements and Clauses of SQL Queries
02:18
The SELECT Statement - Your SQL Querying Starts Here
00:47
The FROM Clause - Tell the Server Which Table Your SQL Query Will Pull Data From
00:39
SELECT * FROM
06:00
The USE Statement
03:19
Selecting Specific Columns
04:18
ASSIGNMENT: SELECT & FROM
01:24
SOLUTION: SELECT & FROM
02:38
SELECT DISTINCT
02:13
ASSIGNMENT: SELECT DISTINCT
00:39
SOLUTION: SELECT DISTINCT
02:00
The WHERE Clause
01:30
Common WHERE Operators
04:59
ASSIGNMENT: The WHERE Clause
00:35
SOLUTION: The WHERE Clause
02:23
Combining WHERE & AND
04:22
ASSIGNMENT: WHERE & AND
00:39
SOLUTION: WHERE & AND
01:37
Combining WHERE & OR
03:38
ASSIGNMENT: WHERE & OR
00:42
SOLUTION: WHERE & OR
03:21
Combining WHERE & IN
04:35
The LIKE Operator
02:37
LIKE Wildcard Examples
05:06
ASSIGNMENT: The LIKE Operator
00:30
SOLUTION: The LIKE Operator
02:28
The GROUP BY Clause
01:43
GROUP BY Example
03:18
PRO TIP: Using Comments & Aliases
05:32
ASSIGNMENT: GROUP BY
00:37
SOLUTION: GROUP BY
02:01
Multiple Dimension GROUP BY Clauses
03:14
Grouping with Aggregate Functions
02:08
ASSIGNMENT: Aggregate Functions
00:55
SOLUTION: Aggregate Functions
03:23
The HAVING Clause
01:44
HAVING Example
02:54
ASSIGNMENT: The HAVING Clause
00:54
SOLUTION: The HAVING Clause
03:11
The ORDER BY Clause
01:31
ORDER BY Example
04:16
ASSIGNMENT: The ORDER BY Clause
00:30
SOLUTION: The ORDER BY Clause
01:47
RECAP: The "Big 6"
02:08
QUIZ: Single Table Analysis (PART 1)
7 questions

Single Table Analysis (PART 2)

10 lectures
The CASE Statement
02:43
CASE Example
05:43
Common CASE Operators
04:18
ASSIGNMENT: The CASE Statement
00:39
SOLUTION: The CASE Statement
03:47
PRO TIP: "Pivoting" with COUNT & CASE
02:54
COUNT & CASE Demo
07:35
ASSIGNMENT: COUNT & CASE
00:52
SOLUTION: COUNT & CASE
03:15
QUIZ: Single Table Analysis (PART 2)
5 questions

MID-COURSE PROJECT

2 lectures
Mid-Course Project Intro
01:42
SOLUTION: Mid-Course Project
06:05

Analyzing Multiple Tables with Joins

28 lectures
Introduction to SQL JOINs and Querying Multiple Tables
00:30
Normalization & Cardinality
03:47
Relationship Diagrams
01:10
Multi-Table Querying
01:09
Reviewing the Maven Movies Database
01:44
Common JOIN Types
02:30
INNER JOIN
01:35
INNER JOIN Example
05:49
ASSIGNMENT: INNER JOIN
00:42
SOLUTION: INNER JOIN
04:13
LEFT JOIN
01:44
LEFT JOIN Example
04:43
ASSIGNMENT: LEFT JOIN
00:42
SOLUTION: LEFT JOIN
03:57
RIGHT JOIN
01:41
LEFT vs. INNER vs. RIGHT JOIN
03:18
FULL OUTER JOIN
01:27
PRO TIP: "Bridging" Unrelated Tables
06:51
ASSIGNMENT: "Bridging" Tables
00:57
SOLUTION: "Bridging" Tables
04:25
Multi-Condition Joins
02:40
ASSIGNMENT: Multi-Condition Joins
00:44
SOLUTION: Multi-Condition Joins
04:42
The UNION Operator
02:15
UNION Example
03:51
ASSIGNMENT: The UNION Operator
00:32
SOLUTION: The UNION Operator
02:41
QUIZ: Multi-Table Analysis
7 questions

FINAL PROJECT

2 lectures
Final Project Intro
02:04
SOLUTION: Final Project
14:54

Wrapping Up

2 lectures
Resources & Next Steps - After this SQL for Beginners Course
00:38
BONUS LESSON
01:42

Đánh giá của học viên

Chưa có đánh giá
Course Rating
5
0%
4
0%
3
0%
2
0%
1
0%

Bình luận khách hàng

Viết Bình Luận

Bạn đánh giá khoá học này thế nào?

image

Đăng ký get khoá học Udemy - Unica - Gitiho giá chỉ 50k!

Get khoá học giá rẻ ngay trước khi bị fix.