- Lab
- A Cloud Guru
Viewing and Sorting Data in MySQL
When working with databases, one of the most important skills is knowing how to view and arrange data to gain useful information. MySQL provides several ways to query databases in order to accomplish this. In this lab, we will run several queries in order to produce specific output.
Path Info
Table of Contents
-
Challenge
List All of the Rows in the `orders` and `products` Tables (run a single query for each)
Login to the MySQL server and change to the prod database:
[cloud_user@host]$ mysql -u root -p mysql> USE prod;
Run the following query to list the rows in the orders table:
mysql> SELECT * FROM orders;
Run the following query to list the rows in the products table:
mysql> SELECT * FROM products;
-
Challenge
Run a Query on the `orders` Table to Order the Rows by the `purchaseDate` Column in Ascending Order
Run the following query on the orders table:
mysql> SELECT * FROM orders ORDER BY purchaseDate;
-
Challenge
Run a Query on the Orders Table That Shows All the Names Beginning with the Letter “m”
Run the following query to show all the orders where the
name
begins with “m”:mysql> SELECT * FROM orders WHERE name LIKE 'm%';
-
Challenge
Run a Query on the `orders` Table That Shows All Purchases in 2018 Where the `productID` Is Less Than 4
Run the following query to show all purchases from 2018 where the
productID
is less than 4:mysql> SELECT * FROM orders WHERE purchaseDate LIKE '2018%' AND productID < 4;
-
Challenge
Run a Query on the `products` Table so That the Output Is in Alphabetical Order Based on the `type` Column
Run the following query on the products table so that the output is in alphabetical order:
mysql> SELECT * FROM products ORDER BY type;
-
Challenge
Run a Query on the `products` Table Where the Cost Is More Than or Equal to 1000
Run the following query to show where the cost is greater or equal to 1000:
mysql> SELECT * FROM products WHERE cost >= 1000;
-
Challenge
Run a Query on the `products` Table That Shows Output Where the Cost Is Greater Than 2000 or Less Than 500
Run the following query to show the items where cost is greater than 2000 or less than 500:
mysql> SELECT * FROM products WHERE cost > 2000 OR cost < 500;
-
Challenge
Show `orders.name`, `products.type`, and `products.cost` By Performing an Inner Join between `orders` and `products` Using `orders.productID` and `products.id`
Run the following command to perform an INNER JOIN on the orders and products table:
mysql> SELECT orders.name, products.type, products.cost FROM orders INNER JOIN products WHERE orders.productID = products.id;
What's a lab?
Hands-on Labs are real environments created by industry experts to help you learn. These environments help you gain knowledge and experience, practice without compromising your system, test without risk, destroy without fear, and let you learn from your mistakes. Hands-on Labs: practice your skills before delivering in the real world.
Provided environment for hands-on practice
We will provide the credentials and environment necessary for you to practice right within your browser.
Guided walkthrough
Follow along with the author’s guided walkthrough and build something new in your provided environment!
Did you know?
On average, you retain 75% more of your learning if you get time for practice.