MySQL

The MySQL tutorials are videos done by a man named "Bucky". He has many videos that cover everything from the basics of SQL to inserting information into a database. The videos are great at teaching many aspects of SQL.

The first few videos go over introducing databases and creating them. Without a database, you cannot properly use SQL since it involves communicating with said database. It is important to understand how to create and add users to a database before working with acutal SQL code.



Further along in the videos, Bucky introduces some more topics including functions, subqueries, and joining tables. Functions and subqueries show more ways to manipulate and order the information in the database. Joining tables together allows SQL to get information from more than one table in the database, and this information can be used to create an entirely new table or used as is.