MySQL for Beginners
- Descrição
- Currículo
- FAQ
- Revisões
MySQL Database Being the Second most widely used Relational Database makes it one of the database to learn if you are looking forward to develop a database driven application.
Are you a Web Developer? An Application Developer? or A Programmer? Then MySQL Database should be one of the Mandatory Database in your “To Learn” list. If you don’t know MySQL yet or if you are new to any database then this is your go to course to learn SQL and also MySQL Database.
If you are learning or want to learn PHP, PYTHON, PEARL or RUBY then you should learn MySQL as well as this is the Database that is used by most of the developer who prefer the previously mentioned programming languages. If you are Web Developer and you don’t know MySQL yet then most won’t recommend you to call yourself as a Web Developer yet.
MySQL is one of the most used and go to database for pretty much all the web developer who pick PHP, PEARL or Python without a second thought.
What does this Course cover?
- Installation of MySQL Server in your Local System
- Setting up and Configuring MySQL Database Server
- Creating a Database with data
- Maintaining the Database
- Designing a better database
- Covers all the basic you should know to create a complex database driven application with MySQL
Materials Included with this Course:
- Course has around 50 Videos and will grow with time
- Materials will be updated regularly
- Sectional wrap up with a document containing all the Query Syntax
- Instructor Help when needed by student (Discussion Board)
Why should you take this course?
- If you don’t have any idea about SQL, MySQL or Database this course is for you as it starts from scratch
- You want to create a database(MySQL) driven application? All you need to create the database and write queries for the same will be covered
- Maintaining you database with Ease even if you have no experience with MySQL
- Some concepts are taught in such a way you will learn them as you practice them and implement in your own way for better involvement and learning.
The course follows a typical flow of topic which is considered best for learning the MySQL Database. The learning curve of SQL is also a part of this course.
-
1Course IntroductionVídeo Aula
A Lecture giving an Introduction to the Course. Know what you can get from this course and what I as an Instructor expect you to do and expect you not to do when it comes to this course.
-
2Introduction to MySQLVídeo Aula
A Lecture giving an Introduction to the MySQL. Few information about the MySQL and why it is so important when it comes to database that are needed these days.
-
3Few Instructions to StudentsVídeo Aula
This Lecture is to provide some instructions to students with what you should do and expected to do to get more out of this course. It is not mandatory but will definitely improve your learning.
-
4Installation of MySQL Database Server in WIndowsVídeo Aula
A step by step installation Guide for Installing MySQL Database Server in Windows based operating system. The lecture contains the following covered:
- Acquiring the required files
- Installing the MySQL Database
- Configuring the MySQL Database Server
- Starting/Stopping MySQL Database Server
-
5Installation of MySQL Database Server in Ubuntu [Linux]Vídeo Aula
A step by step installation Guide for Installing MySQL Database Server in Linux based operating system. The lecture contains the following covered:
- Updating the Source Repository
- Installing the MySQL Database Server
- Check if MySQL Server Service running
- Restarting the MySQL Database Server
- Starting/Stopping MySQL Database Server
-
6Installation MySQL Database Server in MAC OSXVídeo Aula
A step by step installation Guide for Installing MySQL Database Server in MAC OSX based operating system. The lecture contains the following covered:
- Acquiring the required files
- Installing the MySQL Database
- Configuring the MySQL Database Server
- Starting/Stopping MySQL Database Server
- Adding MySQL command to Shell Command Bash for accessing MySQL Console in Terminal
-
7Introduction to MySQL Console in WIndowsVídeo Aula
A Short Introduction to MySQL Console in Windows Based Operating System. The Lecture contains the following:
- Accessing MySQL Server 5.6 Command Line Client
-
8Introduction to MySQL Console in Ubuntu [Linux]Vídeo Aula
A Short Introduction to MySQL Console in Linux Based Operating System. The Lecture contains the following:
- Accessing MySQL Server 5.6 console from Terminal
- Command that is used to access the MySQL Console
-
9Introduction to MySQL Console in MAC OSXVídeo Aula
A Short Introduction to MySQL Console in MAC OSX Based Operating System. The Lecture contains the following:
- Adding MySQL Command to the Terminal Shell command Bash
- Accessing MySQL Server 5.6 Command Line Client
-
10Sectional Wrap-upVídeo Aula
A Sectional Wrap-up Video that sums up and recaps everything learnt in the section with some query syntax when needed.
-
11Wrap-up DocumentTexto
The Wrap up presentation to brush up the sectional topics and engage in student community as part of Classroom environment.
-
12Test your MySQL Installation KnowledgeQuestionário
Lets see what you know when it comes to Installing MySQL
-
13Creating a Database - CREATE DATABASEVídeo Aula
Lecture on Creating a Database in a MySQL Server. The Lecture contains the following:
- CREATE DATABASE Statement
- Creating Database on MySQL Database Server
-
14Creating a Table - CREATE TABLEVídeo Aula
Lecture on Creating a Table in a MySQL Server. The Lecture contains the following:
- CREATE TABLE Statement
- Using a Database in the Server
- Creating Table on MySQL Database Server
- Datatypes like INT, VARCHAR & TIMESTAMP
- Constraints like AUTO_INCREMENT, NOT NULL and PRIMARY KEY
-
15Inserting Values into Table - INSERT INTOVídeo Aula
Lecture on Inserting Value in a MySQL Server Database Table. The Lecture contains the following:
- INSERT INTO Statement
- Inserting Value in a MySQL Server Database Table
- Columns that need to be mentioned
- Values and their formats
-
16Retrieving Values from Table - SELECTVídeo Aula
Lecture on Selecting Value from a MySQL Server Database Table. The Lecture contains the following:
- SELECT FROM Statement
- Selecting Value from a MySQL Server Database Table
- How to select all data from a database table
- SELECT * FROM table_name
-
17Selecting Distinct Values from Column - DISTINCTVídeo Aula
Lecture on Selecting Distinct Value from a MySQL Server Database Table Column. The Lecture contains the following:
- SELECT DISTINCT column_name FROM Statement
- Selecting Distinct Value from a MySQL Server Database Table Column
- How to select unique or distinct values from a specific table column
- SELECT DISTINCT column_name FROM table_name
-
18Selecting a Specific Data using WHERE ClauseVídeo Aula
Lecture on Selecting Specific Value from a MySQL Server Database Table. The Lecture contains the following:
- SELECT FROM Statement with WHERE Caluse
- Selecting Specific Value from a MySQL Server Database Table
- How to select specific data from a database table using where clause checking with a value on a column
- SELECT * FROM table_name WHERE column_name = value
-
19Selecting with Multiple Identifiers Using ANDVídeo Aula
Lecture on Selecting Specific Value from a MySQL Server Database Table with multiple checks. The Lecture contains the following:
- SELECT FROM Statement with WHERE Clause and AND keyword
- Selecting Specific Value from a MySQL Server Database Table with Multiple value checks
- How to select specific data from a database table using where clause and AND keyword checking with multiple value for different column.
- SELECT * FROM table_name WHERE column_name = value AND column_name = value
-
20Selecting with One of Many Identifiers Using ORVídeo Aula
Lecture on Selecting Specific Value from a MySQL Server Database Table with multiple checks where one or all of the value being checked for true. The Lecture contains the following:
- SELECT FROM Statement with WHERE Clause and OR keyword
- Selecting Specific Value from a MySQL Server Database Table with Multiple value checks
- How to select specific data from a database table using where clause and OR keyword checking with multiple value for different column where one of the or all of the column checked for true.
- SELECT * FROM table_name WHERE column_name = value OR column_name = value
-
21Sorting the Data Using ORDER BYVídeo Aula
Lecture on Ordering the Selected Values from a MySQL Server Database Table. The Lecture contains the following:
- SELECT FROM Statement with ORDER BY
- Ordering the Selected Values from a MySQL Server Database Table
- How to select data from a database table and order them by using ORDER BY with ASC or DESC keywords as values.
- SELECT * FROM table_name ORDER BY ASC/DESC
-
22Limiting the Data Retrieved Using LIMITVídeo Aula
Lecture on Limiting the Selected Values from a MySQL Server Database Table. The Lecture contains the following:
- SELECT FROM Statement with LIMIT
- Limiting the Selected Values from a MySQL Server Database Table
- How to select data from a database table and then limit them with LIMIT keywords.
- SELECT * FROM table_name LIMIT start,count
-
23Updating or Modifying Data in a Table Using UPDATEVídeo Aula
Lecture on Updating the Values from a MySQL Server Database Table. The Lecture contains the following:
- UPDATE Statement
- Ordering the Selected Values from a MySQL Server Database Table
- How to update a value in a database table with UPDATE statement by selecting specific row of data
- UPDATE table_name SET column_name = value WHERE column_name = value
-
24Deleting a Data from a Table Using DELETEVídeo Aula
Lecture on Deleting the Selected Values from a MySQL Server Database Table. The Lecture contains the following:
- DELETE Statement with WHERE Clause
- Deleting the Selected Values from a MySQL Server Database Table
- How to select data from a database table and delete that data from Database table using DELETE
- DELETE FROM table_name WHERE column_name = value
-
25Deleting a Table - DROP TABLEVídeo Aula
Lecture on Dropping or Deleting the entire MySQL Server Database Table. The Lecture contains the following:
- DROP TABLE Statement
- Dropping or Deleting the entire MySQL Server Database Table
- How to delete the table along values and structure in database
- DROP TABLE table_name
-
26Deleting all values in Table - TRUNCATE TABLEVídeo Aula
Lecture on Deleting only the values from the MySQL Server Database Table. The Lecture contains the following:
- TRUNCATE TABLE Statement
- Deleting only the values from MySQL Server Database Table
- How to delete the table values and preserving structure in database
- TRUNCATE TABLE table_name
-
27DESCRIBE TABLEVídeo Aula
Lecture on Describing the MySQL Server Database Table. The Lecture contains the following:
- DESCRIBE Statement
- Describing the MySQL Server Database Table
- How to describe the table displaying the structure, data type and constraints in the table
- DESCRIBE table_name
-
28Altering Table Structure - ALTER TABLEVídeo Aula
Lecture on Altering the MySQL Server Database Table. The Lecture contains the following:
- ALTER TABLE Statement
- Altering the MySQL Server Database Table
- How to Alter the table using ALTER
- ALTER TABLE table_name ADD COLUMN column_name data_type constraints
- ALTER TABLE table_name DROP COLUMN column_name
- ALTER TABLE table_name MODIFY COLUMN column_name data_type constraints
-
29Sectional Wrap-upVídeo Aula
A Sectional Wrap-up Video that sums up and recaps everything learnt in the section with some query syntax when needed.
-
30Wrap-up DocumentTexto
The Wrap up presentation to brush up the sectional topics and engage in student community as part of Classroom environment.
-
31Testing your Basic Knowledge on MySQLQuestionário
Lets see what you can make out of the MySQL Basics
-
32Selecting Data with a Range - BETWEENVídeo Aula
Lecture on Selecting data with range in the MySQL Server Database Table. The Lecture contains the following:
- SELECT FROM Statement with BETWEEN
- Selecting data with range in the MySQL Server Database Table
- How to select data that lies between a range
- SELECT * FROM table_name WHERE column_name BETWEEN value and value
-
33Creating Alias Name for a Column - ASVídeo Aula
Lecture on creating an alias name for a column in the MySQL Server Database Table. The Lecture contains the following:
- SELECT FROM Statement with AS
- creating an alias name for a column in the MySQL Server Database Table
- How to create an alias name for a column in a table
- SELECT column_name AS alias_name FROM table_name
-
34Selecting Data which has one of Multitple Values - INVídeo Aula
Lecture on selecting specific data checked with multiple values in the MySQL Server Database Table. The Lecture contains the following:
- SELECT FROM Statement with IN
- selecting specific data checked with multiple values in the MySQL Server Database Table
- How to select data which has one or all of multiple data in a column
- SELECT * FROM table_name WHERE column_name in (value,value,...)
-
35Using LIKE and WILDCARDSVídeo Aula
Lecture on selecting specific data with LIKE and Wildcard in the MySQL Server Database Table. The Lecture contains the following:
- SELECT FROM Statement with LIKE
- Selecting specific data checked with LIKE in the MySQL Server Database Table
- How to select data which has part of the value mentioned using LIKE and wildcards
- SELECT * FROM table_name WHERE column_name LIKE '%value%'/'_alue'
-
36Copy Table with INSERT INTO SELECTVídeo Aula
Lecture on copying values from one table to another MySQL Server Database Table. The Lecture contains the following:
- INSERT INTO SELECT statement
- Copying values from one table to another table
- How to copy all the values from one table to another similar table
- INSERT INTO table_name SELECT * FROM table_name
-
37Copy a Table Struture - CREATE TABLE LIKEVídeo Aula
Lecture on creating a table structure like another MySQL Server Database Table. The Lecture contains the following:
- CREATE TABLE with LIKE
- Copying the structure of a table by creating another one
- How to create a table with same structure as another table
- CREATE TABLE table_name LIKE table_name
-
38Copy Table with Certain Columns - INSERT INTO SELECTVídeo Aula
Lecture on copying values from one table to another MySQL Server Database Table with reduced columns. The Lecture contains the following:
- INSERT INTO SELECT statement
- Copying values from one table to another table
- How to copy all the values from one table to another similar table with reduced columns
- INSERT INTO table_name SELECT column_name,column_name FROM table_name
-
39Combine the Tables - UNIONVídeo Aula
Lecture on combining two tables using UNION in MySQL Server Database. The Lecture contains the following:
- SELECT FROM with UNION
- combining two tables using UNION in MySQL Server Database
- How to combine two tables and display the values with same columns
- SELECT * FROM table_name UNION SELECT * FROM table_name
-
40Sectional Wrap-upVídeo Aula
A Sectional Wrap-up Video that sums up and recaps everything learnt in the section with some query syntax when needed.
-
41Wrap-up DocumentTexto
The Wrap up presentation to brush up the sectional topics and engage in student community as part of Classroom environment.
-
42Keeping Database in ShapeVídeo Aula
Lecture on some of the constraints that keeps the table in MySQL Server Database in shape. The Lecture contains the following:
- Just an Intro to the Section
-
43PRIMARY KEYVídeo Aula
Lecture on Primary Key in MySQL Server Database in shape. The Lecture contains the following:
- PRIMARY KEY
- Limitation
- Usage
-
44UNIQUE KEYVídeo Aula
Lecture on Unique Key in MySQL Server Database in shape. The Lecture contains the following:
- UNIQUE KEY
- Limitation
- Usage
-
45FOREIGN KEYVídeo Aula
Lecture on FOREIGN Key in MySQL Server Database in shape. The Lecture contains the following:
- FOREIGN KEY
- Limitation
- Usage
-
46NOT NULLVídeo Aula
Lecture on NOT NULL in MySQL Server Database in shape. The Lecture contains the following:
- NOT NULL
- Limitation
- Usage
-
47AUTO_INCREMENTVídeo Aula
Lecture on Auto Increment in MySQL Server Database in shape. The Lecture contains the following:
- AUTO_INCREMENT
- Limitation
- Usage
-
48DEFAULTVídeo Aula
Lecture on Default in MySQL Server Database in shape. The Lecture contains the following:
- DEFAULT
- Limitation
- Usage
-
49Sectional Wrap-upVídeo Aula
A Sectional Wrap-up Video that sums up and recaps everything learnt in the section with some query syntax when needed.
-
50Wrap-up DocumentTexto
The Wrap up presentation to brush up the sectional topics and engage in student community as part of Classroom environment.
-
51INNER JOINVídeo Aula
Lecture on Inner Join in MySQL Server Database in shape. The Lecture contains the following:
- INNER JOIN
- Join two tables with INNER JOIN to get the common data
- Usage
- SELECT * FROM table_name INNER JOIN table_name ON table_name.column_name=table_name.column_name
-
52LEFT JOINVídeo Aula
Lecture on Left Join in MySQL Server Database in shape. The Lecture contains the following:
- LEFT JOIN
- Join two tables with Left JOIN to get the common data and all data from Left Table
- Usage
- SELECT * FROM table_name LEFT JOIN table_name ON table_name.column_name=table_name.column_name
-
53RIGHT JOINVídeo Aula
Lecture on Right Join in MySQL Server Database in shape. The Lecture contains the following:
- RIGHT JOIN
- Join two tables with Right JOIN to get the common data and all data from Right Table
- Usage
- SELECT * FROM table_name RIGHT JOIN table_name ON table_name.column_name=table_name.column_name
-
54FULL JOINVídeo Aula
Lecture on Full Join in MySQL Server Database in shape. The Lecture contains the following:
- FULL JOIN with UNION
- Join two tables with FULL JOIN to get the all data from both Tables
- Usage
- SELECT * FROM table_name LEFT JOIN table_name ON table_name.column_name=table_name.column_name UNION SELECT * FROM table_name RIGHT JOIN table_name ON table_name.column_name=table_name.column_name
-
55Sectional Wrap-upVídeo Aula
A Sectional Wrap-up Video that sums up and recaps everything learnt in the section with some query syntax when needed.
-
56Wrap-up DocumentTexto
The Wrap up presentation to brush up the sectional topics and engage in student community as part of Classroom environment.