MariaDB [rortiz]> describe Users; +---------------+------------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +---------------+------------------+------+-----+---------+----------------+ | user_id | int(10) unsigned | NO | PRI | NULL | auto_increment | | user_uname | varchar(255) | YES | | NULL | | | user_email | varchar(255) | YES | | NULL | | | user_password | varchar(255) | YES | | NULL | | | user_fname | varchar(255) | YES | | NULL | | +---------------+------------------+------+-----+---------+----------------+ 5 rows in set (0.00 sec) MariaDB [rortiz]> SELECT * FROM Users; +---------+--------------+------------------+---------------+------------+ | user_id | user_uname | user_email | user_password | user_fname | +---------+--------------+------------------+---------------+------------+ | 1 | TheBigCheese | Queso@Grande.com | StringCheese | Rodrigo | | 2 | test | test@test.com | testpassword | testfname | | 9 | John53 | John@email.com | NewPass53 | John | +---------+--------------+------------------+---------------+------------+ 3 rows in set (0.00 sec) MariaDB [rortiz]> describe foods; +-------------+---------------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +-------------+---------------------+------+-----+---------+----------------+ | prod_id | int(10) unsigned | NO | PRI | NULL | auto_increment | | prod_name | varchar(127) | YES | | NULL | | | prod_img | varchar(127) | YES | | NULL | | | prod_price | decimal(10,2) | YES | | NULL | | | prod_rating | tinyint(3) unsigned | YES | | NULL | | | prod_stock | int(10) unsigned | YES | | NULL | | +-------------+---------------------+------+-----+---------+----------------+ 6 rows in set (0.00 sec) MariaDB [rortiz]> SELECT * FROM foods; +---------+-------------------------+-------------------------------------------------+------------+-------------+------------+ | prod_id | prod_name | prod_img | prod_price | prod_rating | prod_stock | +---------+-------------------------+-------------------------------------------------+------------+-------------+------------+ | 1 | Fried Rice | fried rice.jpg | 7.99 | 5 | 21 | | 2 | Chicken Breast | chicken breast.jpg | 19.99 | 3 | 0 | | 3 | Bacon | bacon.jpg | 17.99 | 2 | 5 | | 4 | Pork Sausage | pork sausage.jpg | 11.99 | 3 | 12 | | 5 | Breaded Chicken Patty | breaded chicken patty.jpg | 11.99 | 1 | 0 | | 6 | Beef Hot Dog | beef hot dog.jpg | 5.99 | 2 | 8 | | 7 | Sirloin Steak | sirloin steak.jpg | 26.99 | 4 | 9 | | 8 | Pulled Pork | pulled pork.jpg | 13.99 | 5 | 0 | | 9 | Honey Ham | honey ham.jpg | 44.99 | 3 | 6 | | 10 | Pineapple Chunks | pineapple chunks.jpg | 6.49 | 2 | 0 | | 11 | Coconut Strips | coconut strips.jpg | 8.99 | 4 | 0 | | 12 | Strawberry Oatmeal | strawberry-oatmeal-cookies_9165.jpg | 5.99 | 4 | 8 | | 13 | Baby Carrots | baby carrots.jpeg | 4.99 | 3 | 8 | | 14 | Green Peas | green peas.JPG | 6.49 | 1 | 9 | | 15 | Broccoli Florets | broccoli florets.png | 6.99 | 3 | 4 | | 16 | Crispy Fish Strips | fish sticks.jpg | 12.99 | 4 | 0 | | 17 | Cod Fillet | cod fillet.jpg | 17.99 | 5 | 4 | | 18 | Breaded Haddock Sticks | BREADED-HADDOCK-BEAUTY.jpg | 12.99 | 5 | 0 | | 19 | Macaroni and Cheese | mac and cheese.jpg | 3.99 | 1 | 8 | | 21 | Whole Blueberries | whole blueberries.jpg | 7.49 | 3 | 3 | | 23 | Asparagus Spears | asparagus.jpg | 10.99 | 5 | 3 | | 24 | Whole Strawberries | whole strawberries.jpg | 6.49 | 2 | 0 | | 25 | Steak Fries | steak fries.jpg | 6.99 | 1 | 3 | | 26 | Vegetable Fried Rice | vegetable fried rice.JPG | 5.99 | 2 | 9 | | 27 | Homestyle Waffles | homestyle waffles.JPG | 5.99 | 4 | 0 | | 28 | Buttermilk Pancakes | SFS_Buttermilk_Pancakes-25.jpg | 6.99 | 5 | 9 | | 29 | Mini Donuts | mini donuts.jpg | 8.99 | 4 | 4 | | 30 | Blueberry Scone Dough | blueberry scone dough.jpg | 14.99 | 2 | 9 | | 31 | Lemon Meringue Pie | lemon pie.jpg | 11.19 | 4 | 10 | | 32 | Chocolate Brownie Bites | german-chocolate-brownie-bites-done-middles.jpg | 9.99 | 5 | 0 | | 33 | Chocolate Crème Pie | Chocolate-Cream-Pie-1-1-1200x917.jpg | 10.99 | 2 | 5 | | 34 | Monster Cookie Dough | edible-monster-cookie-dough.jpg | 10.99 | 4 | 9 | | 35 | Frozen Pizza | frozen pizza.jpg | 10.99 | 5 | 0 | +---------+-------------------------+-------------------------------------------------+------------+-------------+------------+ 33 rows in set (0.00 sec) MariaDB [rortiz]>