mysql> select * from Users; +---------+------------+------------------------+----------------------------------+------------+ | user_id | user_uname | user_email | user_password | user_fname | +---------+------------+------------------------+----------------------------------+------------+ | 1 | test | test@test.com | e16b2ab8d12314bf4efbd6203906ea6c | test | | 2 | emiranda | emilbmiranda@gmail.com | 7d105ed58953b49ba5d16b43178c5650 | Emil | +---------+------------+------------------------+----------------------------------+------------+ 2 rows in set (0.01 sec) mysql> SELECT * FROM Products; +---------+--------------+------------------+-------------------------+------------+-------------+----------+------------+ | prod_id | prod_name | prod_img | prod_description | prod_price | prod_rating | prod_sku | prod_stock | +---------+--------------+------------------+-------------------------+------------+-------------+----------+------------+ | 1 | apples | apples.jpg | Big and Juicy | 2.99 | 4 | 123abc | 5 | | 2 | peaches | peaches.jpg | As big as a giant peach | 5.99 | 5 | 756teh | 7 | | 3 | blackberries | blackberries.jpg | Great for Jam | 3.99 | 3 | het163 | 0 | | 4 | raspberries | raspberries.jpg | Nice and Sweet | 2.49 | 1 | htr7e2 | 1 | | 5 | bananas | bananas.jpg | Ripe and Yellow | 1.49 | 2 | 253afd | 10 | | 6 | blueberries | blueberries.jpg | Bears will love these | 4.49 | 4 | tac197 | 4 | +---------+--------------+------------------+-------------------------+------------+-------------+----------+------------+ 6 rows in set (0.00 sec)