Program Name: B.TECH Program Code: E2UC302B School of Computing Science and Engineering C ourse Code :E2UC302B Course Name: DBMS Insert sample data into Suppliers INSERT INTO Suppliers ( sid , sname , address) VALUES (1, 'Supplier A', '123 Elm St, Springfield'), (2, 'Supplier B', '456 Oak St, Springfield'), (3, 'Supplier C', '789 Pine St, Springfield'), (4, 'Supplier D', '321 Maple St, Springfield'), (5, 'Supplier E', '654 Cedar St, Springfield'); Insert sample data into Parts INSERT INTO Parts ( pid , pname , color ) VALUES (1, 'Part X', 'Red'), (2, 'Part Y', 'Blue'), (3, 'Part Z', 'Green'), (4, 'Part W', 'Yellow'), (5, 'Part V', 'Black'); Insert sample data into Catalog INSERT INTO Catalog ( sid , pid , cost) VALUES (1, 1, 10.50), (1, 2, 15.75), (2, 1, 11.00), (3, 3, 12.25), (4, 5, 9.99);