MariaDB [enishiyama]> SELECT * FROM Users; +---------+------------+---------------+---------------+------------+ | user_id | user_uname | user_email | user_password | user_fname | +---------+------------+---------------+---------------+------------+ | 1 | test | test@test.com | testpassword | testfname | | 2 | en | en@email.com | enpassword | enfname | +---------+------------+---------------+---------------+------------+ MariaDB [enishiyama]> SELECT * FROM Products; +---------+------------+------------------+---------------------+------------+-------------+-----------------+------------+ | prod_id | prod_name | prod_img | prod_description | prod_price | prod_rating | prod_sku | prod_stock | +---------+------------+------------------+---------------------+------------+-------------+-----------------+------------+ | 1 | Blueberry | blueberries.jpg | A sad berry | 8.47 | 2 | 123abc987zyx000 | 0 | | 2 | Strawberry | strawberries.jpg | A cylindrical berry | 3.43 | 5 | 123abc987zyx001 | 4 | | 3 | Blackberry | blackberries.jpg | A evil berry | 10.43 | 3 | 123abc987zyx002 | 8 | | 4 | Gooseberry | gooseberries.jpg | A bird berry | 4.87 | 1 | 123abc987zyx003 | 1 | | 5 | Cloudberry | cloudberry.jpg | A fluffy berry | 1.34 | 3 | 123abc987zyx003 | 6 | | 6 | Chokeberry | chokeberry.jpg | A cant berry | 7.23 | 4 | 123abc987zyx004 | 43 | +---------+------------+------------------+---------------------+------------+-------------+-----------------+------------+