MariaDB [aburt]> describe Users; +------------+------------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +------------+------------------+------+-----+---------+----------------+ | u_id | int(10) unsigned | NO | PRI | NULL | auto_increment | | u_email | varchar(127) | YES | | NULL | | | u_password | varchar(127) | YES | | NULL | | | u_fname | varchar(127) | YES | | NULL | | | u_lname | varchar(127) | YES | | NULL | | +------------+------------------+------+-----+---------+----------------+ 5 rows in set (0.01 sec) MariaDB [aburt]> select * from Users; +------+---------------+------------+---------+---------+ | u_id | u_email | u_password | u_fname | u_lname | +------+---------------+------------+---------+---------+ | 1 | test@test.com | test | test | test | +------+---------------+------------+---------+---------+ 1 row in set (0.00 sec) MariaDB [aburt]> describe Products; +------------------+---------------------+------+-----+---------+--------------- -+ | 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_description | varchar(511) | YES | | NULL | | | prod_price | decimal(10,2) | YES | | NULL | | | prod_rating | tinyint(3) unsigned | YES | | NULL | | | prod_sku | char(32) | YES | | NULL | | | prod_stock | int(10) unsigned | YES | | NULL | | +------------------+---------------------+------+-----+---------+--------------- -+ 8 rows in set (0.00 sec) MariaDB [aburt]> select * from Products; +---------+-------------------+----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+-------------+----------+------------+ | prod_id | prod_name | prod_img | prod_description | prod_price | prod_rating | prod_sku | prod_stock | +---------+-------------------+----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+-------------+----------+------------+ | 1 | Crab Rave | crabrave.PNG | "Crab Rave" is a house song composed by Irish electronic music producer Noisestorm and released by Monstercat in 2018. | 57.86 | 5 | 92115 | 3 | | 2 | Big Chungus | chungus.PNG | Big Chungus refers to an image of the cartoon character Bugs Bunny, usually captioned with the phrase "Big Chungus" and presented as a game for PlayStation 4 console. The word "chungus" was coined by video game journalist Jim Sterling several years before the meme became popular. | 100.00 | 4 | 26288 | 9 | | 3 | Man's not hot | mansnothot.PNG | "Man's Not Hot", also known as The Ting Goes, refers to a viral video by English comedian Michael Dapaah from his web series #SWIL. | 429.99 | 5 | 47752 | 3 | | 4 | Mocking Spongebob | spongebob.PNG | Mocking SpongeBob, also known as Spongemock, refers to an image macro featuring cartoon character SpongeBob SquarePants in which people use a picture of SpongeBob to indicate a mocking tone towards an opinion or point of view. | 24.99 | 4 | 33384 | 1 | | 5 | Damn Gina | damngina.PNG | Distracted Boyfriend, also known as Man Looking at Other Woman, is an object labeling stock photo series in which a man looks at the backside of a woman walking by while another woman, presumably his romantic partner, looks on disapprovingly | 154.23 | 3 | 15310 | 0 | | 6 | Trumpet Boy | trumpetboy.PNG | Trumpet Boy is the nickname given to a boy playing the brass instrument within earshot of a girl. Upon surfacing online in January 2018, the image went viral and spawned a series of image macros and object labeled jokes. | 789.99 | 2 | 21213 | 6 | | 7 | Kappa | kappa.jpg | Kappa is a grayscale photo of Josh DeSeno, a former employee of Justin.tv. The black-and-white emoticon of a slightly smirking man bubbled up from the depths of the streaming community in 2011 and quickly became ubiquitous in online gaming circles. | 12.56 | 5 | 90324 | 1 | +---------+-------------------+----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+-------------+----------+------------+ 7 rows in set (0.00 sec)