mysql> select * from Products; +---------+-----------------------------+----------------+---------------------------------------------+------------+-------------+----------+------------+ | prod_id | prod_name | prod_img | prod_description | prod_price | prod_rating | prod_sku | prod_stock | +---------+-----------------------------+----------------+---------------------------------------------+------------+-------------+----------+------------+ | 1 | New Balance 2040v3 Leather | 2040v3.jpg | The pinnacle of style and comfort | 400.00 | 4 | NB00001 | 1 | | 2 | Jordan Super Fly 5 iD | superfly.jpg | Custom made and simply the best | 190.00 | 3 | JD00001 | 0 | | 3 | Adidas Ultraboost Uncaged | ultraboost.jpg | Like wearing a sock, but its a shoe | 200.00 | 5 | AD00001 | 1 | | 4 | Reebok JJI Insomnia Edition | insomnia.jpg | Fusion of style and comfort | 99.99 | 5 | RE00001 | 1 | | 5 | Under Armour Bandit | bandit.jpg | Light breathable and extremely stretchable | 89.00 | 4 | UU00001 | 1 | | 6 | Nike Air Max Sequent 2 | sequent.jpg | Great all purpose training shoe | 100.00 | 3 | NAM001 | 2 | +---------+-----------------------------+----------------+---------------------------------------------+------------+-------------+----------+------------+ 6 rows in set (0.00 sec) mysql> select * from Users -> ; +---------+------------+--------------------+---------------+------------+ | user_id | user_uname | user_email | user_password | user_fname | +---------+------------+--------------------+---------------+------------+ | 2 | saustin | spencer@austin.vg | password | spencer | | 13 | saustin | NULL | password | NULL | | 14 | saustin | NULL | password | NULL | | 15 | stupid | NULL | stupid | NULL | | 16 | stupid | NULL | stupid | NULL | | 17 | stupid | NULL | stupid | NULL | | 18 | sally | NULL | sue | NULL | | 19 | King | NULL | kong | NULL | | 20 | King | NULL | kong | NULL | | 21 | spenceraaa | NULL | hello | NULL | | 22 | sally | sally@sue.com | sue | NULL | | 23 | john | john@john.com | john | NULL | | 24 | shawn | shawn@austin.com | austin | shawn | | 25 | ted | aog610@outlook.com | bundy | Spencer | | 26 | saustin | | password | | | 27 | saustin | | password | | | 28 | saustin | | password | | | 29 | saustin | | password | | | 30 | maddox | maddox@maddox.com | quick | maddox | +---------+------------+--------------------+---------------+------------+ 19 rows in set (0.00 sec)