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`
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
CREATE TABLE authuser id INT11 NOT NULL AUTOINCREMENT password VARCHAR128 NOT NULL last... View full answer
Get step-by-step solutions from verified subject matter experts
