Question: put this table into 3rd normal form. CREATE TABLE order item ( oi_id tinyint(4) NOT NULL, `oi_order_id` tinyint(4) DEFAULT NULL, oi_product_id` tinyint(4) DEFAULT NULL, oi_price_per_unit`

CREATE TABLE order item ( oi_id tinyint(4) NOT NULL, `oi_order_id` tinyint(4) DEFAULT 

put this table into 3rd normal form. 

CREATE TABLE order item ( oi_id tinyint(4) NOT NULL, `oi_order_id` tinyint(4) DEFAULT NULL, oi_product_id` tinyint(4) DEFAULT NULL, oi_price_per_unit` smallint(6) DEFAULT NULL, oi_cart_quantity smallint(6) DEFAULT NULL, oi_total` smallint(6) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

Step by Step Solution

3.47 Rating (160 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

CREATE TABLE authuser id INT11 NOT NULL AUTOINCREMENT password VARCHAR128 NOT NULL last... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Computer Engineering Questions!