Bucky's Tutorials

During this assignment I was required to watch and follow along with some short tutorial videos. The videos were designed to teach viewers about creating and manipulating databases using MySQL. Please see below for more information.

Show command
Using show command to display databases.

Show columns
Using Show command to display columns within a database.

Selecting Columns
Here I used the select command to show only the columns I wanted. Each column name is separated by a ",".

Order By
Using the ORDER BY command to sort data in this case descending(DESC).
Wildcard
Show using the "%" wildcard wich can be used for zero, one, or multiple characters. You could also use "_" to represent a single unknown character.

CONCAT columns
Using CONCAT() functoin to join columns together. Also useing keyword AS to rename the custom column.

Selecting IN
This illustrates the use of the key word “IN” to replace multiple “OR”.

REGEXP
Using REGEXP

Limit
Limiting the number of returned records.
Functions
Here you will see the ability to use multiple functions in the same statement.

View
Here I created a view that displays data from tables.

Full Text Search
This image demonstrates useing a full text search with the bool option.

Math
This image demonstrates the ability to do math within the query.

Join
Here I have joined information from two separate tables.

Order By
Using DISTINCT command to show only unique entries.