• Post category:StudyBullet-8
  • Reading time:6 mins read


Learn MySQL in 2022, with 100+ live running queries and examples

What you will learn

Learn how to work with Databases from scratch

Get a MySQL Crash Course (2022)

Learn how to query SQL, since MySQL is SQL-based

Maintaining the Database

Writing optimal queries

Description

Welcome to our MySQL Course!!!

In this Video Course, learn MySQL and its concept. MySQL is a relational database management system (RDBMS). RDBMS is the basis for SQL, and for all modern database systems such as MySQL, MS SQL Server, Microsoft Access, Oracle, etc. We have covered MySQL in this course. The course is for beginners and consists of more than 100+ live running queries, including creating new databases and tables.

The course begins with MySQL Introduction and Features. Then, we have shown how to set upΒ and install it on both Windows. We proceed further with creating a new database and table, to perform various operations on it. With that, we have also covered live-running queries in every lesson.

Note: The flow would be step-by-step and the explanations would include a tutorial-like format, to make it easier for beginners to understand a new database and table and its concepts, with live running queries as examples. With that, we have also created some quizzes to polish your MySQL skills.

**Course Highlights**


Get Instant Notification of New Courses on our Telegram channel.


36 lessons

2h video with live running examples

100+ examples

20 Quizzes to polish your skills after learning from the lessons

While learning, you will get an opportunity to work on various hands-on exercises and understand the role of databases in a real-world application.

English
language

Content

MySQL Introduction

Introduction & Features
SQL vs NoSQL

MySQL Installation and Setup

Install MySQL on Windows

Create and Insert

Create a Database
Create a Table
Insert Records

Select Records in MySQL

SELECT Statement in MySQL
SELECT DISTINCT Statement in MySQL
WHERE Clause in MySQL

Constraints in MySQL

Not Null Constraint
Primary Key Constraint
Foreign Key Constraint
Unique Constraint
Default Constraint
Check Constraint

Alter a Table in MySQL

Alter table and add a new column
Alter table and drop a column
Alter table and modify a column

Operator in MySQL

AND Operator
OR Operator
NOT Operator
IN Operator
LIKE Operator
BETWEEN Operator

Comments in MySQL

Add a comment in MySQL

Built-in Functions

MySQL sum() function
MySQL avg() function
MySQL count() function

MySQL Statements

UPDATE Statement
DELETE Statement

Order Records in MySQL

ORDER BY Statement

Limit records in MySQL

How to select limited records with the LIMIT Clause

MySQL Indexes

Create, Drop and Show indexes

MySQL Joins

INNER, LEFT and RIGHT Joins

Drop Table and Database

DROP TABLE Command
DROP DATABASE Command
MySQL Quiz