SET SERVEROUTPUT ON SET VERIFY OFF BEGIN PAC_NFL.insertar_equi(1, 'JETS', 'NEW JERSEY', 1); PAC_NFL.insertar_equi(2, 'PATRIOTS', 'NEW ENGLAND', 1); PAC_NFL.insertar_equi(3, 'BILLS', 'BUFFALO', 1); PAC_NFL.insertar_equi(4, 'DOLPHINS', 'MIAMI', 1); PAC_NFL.insertar_equi(5, 'BROWNS', 'CLEVELAND', 2); PAC_NFL.insertar_equi(6, 'STEELERS', 'PITTSBURGH', 2); PAC_NFL.insertar_equi(7, 'RAVENS', 'BALTIMORE', 2); PAC_NFL.insertar_equi(8, 'BENGALS', 'CINCINNATI', 2); PAC_NFL.insertar_equi(9, 'JAGUARS', 'JACKSONVILLE', 3); PAC_NFL.insertar_equi(10, 'TITANS', 'TENNESSEE', 3); PAC_NFL.insertar_equi(11, 'TEXANS', 'HOUSTON', 3); PAC_NFL.insertar_equi(12, 'COLTS', 'INDIANAPOLIS', 3); PAC_NFL.insertar_equi(13, 'BRONCOS', 'DENVER', 4); PAC_NFL.insertar_equi(14, 'CHARGERS', 'SAN DIEGO', 4); PAC_NFL.insertar_equi(15, 'CHIEFS', 'KANSAS CITY', 4); PAC_NFL.insertar_equi(16, 'RAIDERS', 'OAKLAND', 4); PAC_NFL.insertar_equi(17, 'EAGLES', 'PHILADELPHIA', 5); PAC_NFL.insertar_equi(18, 'REDSKINS', 'WASHINGTON', 5); PAC_NFL.insertar_equi(19, 'COWBOYS', 'DALLAS', 5); PAC_NFL.insertar_equi(20, 'GIANTS', 'NEW YORK', 5); PAC_NFL.insertar_equi(21, 'LIONS', 'DETROIT', 6); PAC_NFL.insertar_equi(22, 'PACKERS', 'GREEN BAY', 6); PAC_NFL.insertar_equi(23, 'VIKINGS', 'MINNESOTA', 6); PAC_NFL.insertar_equi(24, 'BEARS', 'CHICAGO', 6); PAC_NFL.insertar_equi(25, 'FALCONS', 'ATLANTA', 7); PAC_NFL.insertar_equi(26, 'PANTHERS', 'CAROLINA', 7); PAC_NFL.insertar_equi(27, 'SAINTS', 'NEW ORLEANS', 7); PAC_NFL.insertar_equi(28, 'BUCCANEERS', 'TAMPA BAY', 7); PAC_NFL.insertar_equi(29, 'SEAHAWKS', 'SEATTLE', 8); PAC_NFL.insertar_equi(30, 'RAMS', 'ST LOUIS', 8); PAC_NFL.insertar_equi(31, 'CARDINALS', 'ARIZONA', 8); PAC_NFL.insertar_equi(32, '49ERS', 'SAN FRANCISCO', 8); END; / SET SERVEROUTPUT OFF SET VERIFY ON