SQL Beginner to Guru: MySQL Edition – Master SQL with MySQL
SQL Beginner to Guru: MySQL Edition – Master SQL with MySQL, available at $89.99, has an average rating of 4.6, with 178 lectures, 3 quizzes, based on 1052 reviews, and has 19976 subscribers.
You will learn about Become a SQL Guru! Be that 'go-to' person! Master SQL to create reports from realistic MySQL databases See how to aggregate and analyze data using SQL functions Create your own database through the power of SQL Understand How to Leverage Database Transactions Tune SQL statements for optimum performance Avoid common mistakes with SQL This course is ideal for individuals who are Anyone wishing to learn how to use SQL! It is particularly useful for Anyone wishing to learn how to use SQL!.
Enroll now: SQL Beginner to Guru: MySQL Edition – Master SQL with MySQL
Summary
Title: SQL Beginner to Guru: MySQL Edition – Master SQL with MySQL
Price: $89.99
Average Rating: 4.6
Number of Lectures: 178
Number of Quizzes: 3
Number of Published Lectures: 168
Number of Published Quizzes: 3
Number of Curriculum Items: 181
Number of Published Curriculum Objects: 171
Original Price: $199.99
Quality Status: approved
Status: Live
What You Will Learn
- Become a SQL Guru! Be that 'go-to' person!
- Master SQL to create reports from realistic MySQL databases
- See how to aggregate and analyze data using SQL functions
- Create your own database through the power of SQL
- Understand How to Leverage Database Transactions
- Tune SQL statements for optimum performance
- Avoid common mistakes with SQL
Who Should Attend
- Anyone wishing to learn how to use SQL!
Target Audiences
- Anyone wishing to learn how to use SQL!
SQL is the programming language used to get data in and out of databases. Relational Databases are extremely popular with companies of all sizes.
Employers are searching for people with SQL skills. Go to any popular jobs site, and search for the keyword ‘SQL’. You will see 10’s of THOUSANDS of job postings.
Right now these positions are going unfilled – because companies cannot find enough people with SQL skills.
In this course, you will learn how to use SQL using the MySQL relational database – the most popular database in the world.
No previous SQL experience is needed. This course is perfect for beginners.
In this course, you will:
-
Learn how to install MySQL on your computer.
-
Learn how to install MySQL Workbench on your computer.
-
See how to import the famous MySQL employee database into your MySQL database.
-
Get hands on experience generating SQL reports.
-
Master SQL join statements.
-
Create table joins using database tables with MILLIONS of records!
-
See how easy it is to use SQL to update one record or many records in the database.
-
Learn to use SQL Sub-Selects.
-
Write advanced SQL reports against a ecommerce database.
-
Understand what database transactions are, and the tools you have to control them with MySQL.
-
Use SQL to create tables in your MySQL database.
-
Learn the MySQL syntax to alter existing database tables.
-
Tackle challenging real world like assignments for SQL reporting and database maintenance tasks.
-
Leverage using SQL views for common reports.
Course Extras
-
Slack Community –Join the instructor, teacher’s assistants, and other students in a Slack Community exclusive to this course!
-
All Source Code in GitHub – Get access to all source code used in course via GitHub (no experience with GitHub necessary)
-
All Lecture Slides Downloadable as PDFs – Download lecture slides for study and future reference!
Other Databases?
This course is focused on using SQL with the MySQL database.
SQL is a standard, which which is supported by many other databases. The SQL skills you learn in this course can be applied to other databases such as Postgres, Oracle, and MS SQL Server.
There is a ton of demand for people with SQL skills. In the US, there are over 100,000 job openings for people with SQL skills.
Through this course, you will master SQL.
Open the door to new opportunities and enroll today!
Course Curriculum
Chapter 1: SQL Beginner to Guru MySQL Edition Introduction
Lecture 1: Getting the Most out of Your SQL Course
Lecture 2: Slack Group for SQL Beginner to Guru MySQL Edition
Lecture 3: GitHub Workflow
Lecture 4: SQL – Let's write our first SQL!
Lecture 5: SQL Fiddle Assignment Review
Chapter 2: Introduction to SQL
Lecture 1: Introduction to SQL
Lecture 2: What is a Database?
Lecture 3: Relational Database Principles
Lecture 4: Assignment: Create Tables and Insert Data
Lecture 5: Assignment Review: Create Tables and Insert Data
Lecture 6: History of SQL
Lecture 7: What is a Relational Database Management System?
Lecture 8: History of MySQL
Lecture 9: RDBMS Deployment Architectures
Lecture 10: Flashcards
Lecture 11: Conclusion
Chapter 3: Installation of MySQL
Lecture 1: Introduction
Lecture 2: Review of MySQL Installation Options
Lecture 3: MySQL Windows 10 Installation Quick Start
Lecture 4: MySQL Windows 10 Installation
Lecture 5: MySQL OSX Installation Quick Start
Lecture 6: MySQL OSX Installation
Lecture 7: MySQL Linux Installation Quick Start
Lecture 8: MySQL Linux Installation Ubuntu
Lecture 9: MySQL Linux Installation CentOS
Chapter 4: Connecting to MySQL
Lecture 1: Introduction
Lecture 2: Connecting to MySQL Overview
Lecture 3: MySQL Command Line for OSX and Linux
Lecture 4: MySQL Command Line for Docker
Lecture 5: MySQL Workbench Windows Installation Quick Start
Lecture 6: MySQL Workbench OSX Installation Quick Start
Lecture 7: MySQL Workbench OSX Installation
Lecture 8: MySQL Workbench Linux Installation Quick Start
Lecture 9: MySQL Workbench Linux Installation
Chapter 5: Selecting Data from a Single Table
Lecture 1: Introduction
Lecture 2: Importing the MySQL Employee Database
Lecture 3: Assignment use SQL to get Row Counts
Lecture 4: Assignment Review – Use SQL to get Row Counts
Lecture 5: Review of the SQL Select Statement
Lecture 6: Selecting Specific Columns from Tables
Lecture 7: Using Aliases to Name Columns
Lecture 8: Using the SQL CONCAT Function to Join Columns
Lecture 9: SQL Arithmetic Operators
Lecture 10: Using SQL Arithmetic Operators in Selecting Data
Lecture 11: SQL Data Types
Lecture 12: Formatting Date Values with MySQL
Lecture 13: Using the LEFT and RIGHT MySQL Functions
Lecture 14: Introduction to the SQL WHERE Clause
Lecture 15: SQL WHERE Clause with Equals and Not Equals
Lecture 16: Using AND and OR with SQL WHERE Clause
Lecture 17: Using IN and NOT IN with with SQL WHERE Clause
Lecture 18: Dealing with NULL Values in SQL WHERE Clause
Lecture 19: Using Greater Than and Less Than with SQL WHERE Clause
Lecture 20: Using LIKE and NOT LIKE with SQL WHERE Clause
Lecture 21: Using BETWEEN and NOT BETWEEN with SQL WHERE Clause
Lecture 22: Ordering Results with SQL ORDER BY
Lecture 23: Limit Results with SQL LIMIT Clause
Lecture 24: Using SQL to Select DISTINCT Values
Lecture 25: Using SQL Sub-selects with IN in SQL Where Clause
Lecture 26: Assignment – Fix SQL Statements
Lecture 27: Assignment Review
Lecture 28: Conclusion
Chapter 6: Grouping and Summarizing Data with SQL
Lecture 1: Introduction
Lecture 2: Using the SQL GROUP By clause
Lecture 3: MySQL Aggregate Functions
Lecture 4: Using the SQL HAVING Clause
Lecture 5: Using the SQL SUM Function
Lecture 6: Using the SQL Min and Max Functions
Lecture 7: Using the SQL AVG Function
Lecture 8: Assignment – Write SQL Report for Salary Information by Year Excluding Managers
Lecture 9: Assignment Review
Lecture 10: Conclusion
Chapter 7: Using SQL to Select Data from More Than One Table
Lecture 1: Introduction
Lecture 2: Overview of SQL Table Joins
Lecture 3: Introduction to SQL Inner Joins
Lecture 4: Using Table Aliases with SQL Inner Joins
Lecture 5: Limiting Columns Displayed with SQL Inner Joins
Lecture 6: Using a WHERE Clause with SQL Inner Joins
Lecture 7: Assignment – Create Department Employee Report
Lecture 8: Assignment Review – Create Department Employee Report
Lecture 9: Using SQL Natural Joins
Lecture 10: Using SQL Equi-Joins
Lecture 11: Using SQL Union Joins
Lecture 12: Other MySQL Functions
Lecture 13: Using SQL LEFT OUTER JOINS
Lecture 14: Assignment – Write SQL LEFT OUTER JOIN
Lecture 15: Assignment Review – Write SQL LEFT OUTER JOIN
Lecture 16: Conclusion
Chapter 8: Using SQL to Insert Data
Lecture 1: Introduction
Instructors
-
John Thompson • 500,000+ Enrollments Worldwide
Spring Framework Guru – Best Selling Instructor -
Spring Ahead Code Academy
Spring Ahead with Your Career
Rating Distribution
- 1 stars: 10 votes
- 2 stars: 12 votes
- 3 stars: 94 votes
- 4 stars: 358 votes
- 5 stars: 577 votes
Frequently Asked Questions
How long do I have access to the course materials?
You can view and review the lecture materials indefinitely, like an on-demand channel.
Can I take my courses with me wherever I go?
Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!
You may also like
- Top 10 Video Editing Courses to Learn in November 2024
- Top 10 Music Production Courses to Learn in November 2024
- Top 10 Animation Courses to Learn in November 2024
- Top 10 Digital Illustration Courses to Learn in November 2024
- Top 10 Renewable Energy Courses to Learn in November 2024
- Top 10 Sustainable Living Courses to Learn in November 2024
- Top 10 Ethical AI Courses to Learn in November 2024
- Top 10 Cybersecurity Fundamentals Courses to Learn in November 2024
- Top 10 Smart Home Technology Courses to Learn in November 2024
- Top 10 Holistic Health Courses to Learn in November 2024
- Top 10 Nutrition And Diet Planning Courses to Learn in November 2024
- Top 10 Yoga Instruction Courses to Learn in November 2024
- Top 10 Stress Management Courses to Learn in November 2024
- Top 10 Mindfulness Meditation Courses to Learn in November 2024
- Top 10 Life Coaching Courses to Learn in November 2024
- Top 10 Career Development Courses to Learn in November 2024
- Top 10 Relationship Building Courses to Learn in November 2024
- Top 10 Parenting Skills Courses to Learn in November 2024
- Top 10 Home Improvement Courses to Learn in November 2024
- Top 10 Gardening Courses to Learn in November 2024