rite in the in the box provided the correct SQL statement th
rite in the in the box provided the correct SQL statement that the following case: Create a new record for the table VENDORS\' that has the following columns-value pairs (COLUMN VALUE) in order as defined by the data dictionary: HEIGHT 8, MANUFACTURER Pentair Inc\' Data Dictionary Table Vendors HEIGHT INT MANUFACTURER VARCHAR(16) 02015 cengage Learning. All Rights Reserded. May not be scanned, copied or dupleated, or posted to a publicly accessible webste, in whole or in part
Solution
INSERT INTO VENDORS (HEIGHT, MANUFACTURER)
VALUES (\'8\', \'Pentair Inc\');
OR
INSERT INTO VENDORS VALUES (\'8\', \'Pentair Inc\');
