Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
MySQL Database Development for Beginners
Rating: 4.4 out of 5(254 ratings)
8,735 students

MySQL Database Development for Beginners

We’ll Introduce the Basic Concepts of RDBMS in general with MySQL Database for Beginners
Last updated 9/2015
English
English [Auto],

What you'll learn

  • Understand the Basic Relational Database Management System Concepts
  • Execute Basic to Advanced MySQL Queries

Course content

4 sections20 lectures1h 54m total length
  • Installing MySQL5:33

    install mysql by downloading a bundle that includes apache, php, and mysql; start all servers and log in as root with no password to begin exploring mysql.

  • Database Creation2:46

    View existing databases, create a new database named course, and switch to it; then show tables to see an empty set, noting information_schema and performance_schema and not deleting test.

  • Table Creation with SELECT and INSERT6:26

    Create a simple names table with first and last text columns, insert a row like John Doe, and retrieve data with select queries using where filters.

  • MySQL Data Types12:47

    Understand MySQL data types: numeric (tinyint to bigint), floating (float, double) and decimal, character (char, varchar, binary, blob), and date types (date, datetime, timestamp) with not null.

  • Creating an Auto Incrementing Primary Key8:06

    Create a names table with an auto incrementing primary key id (mediumint, not null, unique). Insert sample names and query by name or id to see the key in action.

Requirements

  • Knowledge of RDBMS Concept is Helpful but Not Required

Description

MySQL is a general purpose relational database management system (RDBMS) used mainly to provide a back-end database for web applications. In this course, we'll introduce the concepts of relational database management systems in general, and how they relate to MySQL in particular.

Unlike traditional courses that concentrate mainly on theory, we'll take a practical “how-to” approach to working with data. Here's what yyou'll learn:

Creating databases and tables

Adding data to a table with INSERT

Reading a table with SELECT

How to use WHERE to filter data

Using ORDER BY to sort data

JOINs and how to use them to read from multiple tables

Changing data in a table with UPDATE

The DELETE query: removing one or more rows of data from a table

Using a text file to load a database schema

These topics and many more will be covered. The concentration in this course is on MySQL itself… not on how to use it to for any particular purpose. But this course makes a great introduction to our upcoming course about web databases using php and MySQL. So why wait… sign up today!

Who this course is for:

  • Beginner who wants to Learn MySQL, or an Expert wants to refresh MySQL Knowledge