Dwmexp 1
Dwmexp 1
mysql> INSERT INTO Product (id, type, category, cost, quantity) VALUES
-> (1, 'Laptop', 'Electronics', 1000.00, 50),
-> (2, 'Smartphone', 'Electronics', 600.00, 200),
-> (3, 'Tablet', 'Electronics', 300.00, 100),
-> (4, 'Monitor', 'Accessories', 150.00, 75);
Query OK, 4 rows affected (0.03 sec)
Records: 4 Duplicates: 0 Warnings: 0
mysql>
mysql> INSERT INTO Location (pincode, region, city, state) VALUES
-> (400001, 'Western Region', 'Mumbai', 'Maharashtra'),
-> (110001, 'Northern Region', 'Delhi', 'Delhi'),
-> (560001, 'Southern Region', 'Bangalore', 'Karnataka'),
-> (600001, 'Southern Region', 'Chennai', 'Tamil Nadu');
Query OK, 4 rows affected (0.01 sec)
Records: 4 Duplicates: 0 Warnings: 0