--Module: poll -- hopp-poll-insert.sql -- Derechos Reservados (c) 2001-2002 Sandino Araico Sánchez -- Derechos Reservados (c) 2001-2002 Presidencia de la República -- Copyright (c) 2001-2002 Sandino Araico Sánchez All rights reserved -- --COMIENZA LICENCIA EN ESPAÑOL MEXICANO------------------------------------- -- Por éste medio se otroga permiso, libre de cargo, a cualquier persona que -- obtenga una copia de este software y archivos de documentación asociados -- (el "Software"), a utilizar el Software sin restricción, incluyendo sin -- limitación los derechos de usar, copiar, modificar, unir, publicar, -- distribuir y/o vender copias de el Software, y permitir lo mismo a personas -- a quienes les sea entregado el software, siempre y cuando los avisos de -- Derechos reservados y Copyright que aparecen arriba y éste permiso (en -- español y en inglés) aparezcan en todas las copias de el Software y que -- tanto los avisos de Derechos reservados y Copyright que aparecen arriba como -- éste permiso (en español y en inglés) aparezcan en la documentación de -- soporte. -- -- ESTE SOFTWARE SE PROVEE "TAL CUAL", SIN NINGUNA GARANTÍA DE NINGÚN TIPO, -- EXPRESA O IMPLÍCITA, INCLUYENDO PERO NO LIMITÁNDOSE A LAS GARANTÍAS DE -- MERCANTIBILIDAD, ADECUACIÓN PARA UN PROPÓSITO EN PARTICULAR Y NO -- INFRACCIÓN DE LOS DERECHOS DE TERCERAS PARTES. EN NINGÚN MOMENTO EL O LOS -- TITULARES DE LOS DERECHOS DE AUTOR Y COPYRIGHT INCLUIDOS EN ESTE AVISO SERÁN -- RESPONSABLES POR CUALQUIER RECLAMACIÓN O POR CUALQUIER DAÑO ESPECIAL, -- INDIRECTO O CONSECUENTE, O CUALQUIER DAÑO QUE RESULTE DE LA PÉRDIDA DE USO, -- DATOS O GANANCIAS, YA SEA EN UNA ACCIÓN DE CONTRATO, NEGLIGENCIA U OTRA -- ACCIÓN TORTUORIA, RESULTANTE DE O EN CONEXIÓN CON EL USO O DESEMPEÑO DE -- ESTE SOFTWARE. -- -- Excepto que se incluya en éste aviso, no se debe usar el nombre de ningún -- titular de Derechos de autor o Copyright en publicidad o de otra manera -- psra promover la venta, uso u otros tratos en este Software sin previa -- autorización por escrito del titular de Derechos de autor o Copyright. -- --TERMINA LICENCIA---------------------------------------------------------- -- -- --BEGIN LICENSE IN US ENGLISH----------------------------------------------- -- Permission is hereby granted, free of charge, to any person obtaining a -- copy of this software and associated documentation files (the -- "Software"), to deal in the Software without restriction, including -- without limitation the rights to use, copy, modify, merge, publish, -- distribute, and/or sell copies of the Software, and to permit persons -- to whom the Software is furnished to do so, provided that the above -- copyright and "Derechos reservados" notices and this permission notice -- (in spanish and english) appear in all copies of the Software and that both -- the above copyright and "Derechos reservados" notices and this permission -- notice (in spanish and english) appear in supporting documentation. -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -- OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT AND "DERECHOS DE -- AUTOR" HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR -- ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER -- RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF -- CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -- CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -- -- Except as contained in this notice, the name of a copyright or "Derechos de -- autor" holder shall not be used in advertising or otherwise to promote the -- sale, use or other dealings in this Software without prior written -- authorization of the copyright or "Derechos de autor" holder. -- --END LICENSE--------------------------------------------------------------- -- Changelog: -- 2001-09-18 Sandino Araico Sánchez - poll data insertion sql script -- 2002-03-15 Sandino Araico Sánchez - Una encuesta de tipo 's' insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'Califica el Sitio de Presidencia','S','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Contenido',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Diseño',2); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Actualización',3); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Interactividad',4); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Tecnología',5); insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'1. ¿Está usted familiarizado con la temática de la publicación? ','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Sí',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'No',2); insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'2. ¿Encuentra interesante la temática de la publicación? ','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Sí',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'No',2); insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'3. ¿Encuentra utilidad y aplicación del contenido de su actividad laboral? ','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Mucha',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Poco',2); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Nada',3); insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'4. ¿Encuentra suficiente la información de la publicación? ','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Sí',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'No',2); insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'5. ¿Encuentra claramente expuesto el contenido? ','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Mucho',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Poco',2); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Nada',3); insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'6. ¿Considera usted, que si los espacios construidos cumplieran con estas caractéristicas, se lograría la integración de las personas con Discapacidad a la vida activa de nuestro país? ','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Mucho',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Poco',2); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Nada',3); insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'7. ¿Usted adecuaría su inmueble actual? ','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Sí',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'No',2); insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'8. De haber contestado NO, las razones serían:? ','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Económicas',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Insuficiencia de espacio',2); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Otras',3); insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'9. ¿Aplicaría Usted estas especificaciones en futuras construcciones? ','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Sí',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'No',2); insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'10. ¿Propondría Usted modificaciones a futuras ediciones del documento? ','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Sí',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'No',2); begin; insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'','S','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'¿Está usted de acuerdo con que el combate a la pobreza es responsabilidad de todos los países?',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'¿Está usted de acuerdo con que la cooperación internacional es un buen mecanismo para combatir la pobreza en el mundo?',2); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'¿Cree usted que foros como la conferencia internacional la es el mejor mecanismo para apoyar el desarrollo de todos los países?',3); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Para usted, ¿la celebración en México, por su vocación pacifista, de la primera Cumbre Mundial "Financiación para el Desarrollo" fortalece los principios fraternales en el concierto de las naciones?',4); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Para usted, ¿la celebración en México de la primera Cumbre Mundial "Financiación para el Desarrollo" lo muestra como una nación que busca mejorar la posición de los países emergentes en el mundo?',5); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'¿Cree usted que los países desarrollados deben cooperar con los países menos desarrollados para financiar programas sociales?',6); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'¿Cree usted que los apoyos financieros internacionales a los países más necesitados deben aumentar para impulsar el progreso económico y social del mundo?',7); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'¿Cree usted que fortalecer la participación de los países emergentes en los procesos económicos internacionales mejorará el sistema económico mundial?',8); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'¿Usted considera importante para los países latinoamericanos que la primera Cumbre Mundial "Financiación para el Desarrollo” tenga como sede a México?',9); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'¿Usted espera que la Cumbre Mundial de resultados positivos para el mejoramiento de la economía mundial?',10); commit; begin; insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'¿Está usted de acuerdo con que el combate a la pobreza es responsabilidad de todos los países?','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Sí',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'No',2); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'No sé',2); insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'¿Está usted de acuerdo con que la cooperación internacional es un buen mecanismo para combatir la pobreza en el mundo?','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Acuerdo',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Desacuerdo',2); --insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) -- values (nextval('s_poll_det'),currval('s_poll'),'No sé',2); insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'¿Cree usted que foros como la conferencia internacional la es el mejor mecanismo para apoyar el desarrollo de todos los países?','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Sí',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'No',2); --insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) -- values (nextval('s_poll_det'),currval('s_poll'),'No sé',2); insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'Para usted, ¿la celebración en México, por su vocación pacifista, de la primera Cumbre Mundial "Financiación para el Desarrollo" fortalece los principios fraternales en el concierto de las naciones?','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Sí',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'No',2); --insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) -- values (nextval('s_poll_det'),currval('s_poll'),'No sé',2); insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'Para usted, ¿la celebración en México de la primera Cumbre Mundial "Financiación para el Desarrollo" lo muestra como una nación que busca mejorar la posición de los países emergentes en el mundo?','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Sí',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'No',2); --insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) -- values (nextval('s_poll_det'),currval('s_poll'),'No sé',2); insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'¿Cree usted que los países desarrollados deben cooperar con los países menos desarrollados para financiar programas sociales?','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Sí',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'No',2); --insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) -- values (nextval('s_poll_det'),currval('s_poll'),'No sé',2); insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'¿Cree usted que los apoyos financieros internacionales a los países más necesitados deben aumentar para impulsar el progreso económico y social del mundo?','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Sí',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'No',2); --insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) -- values (nextval('s_poll_det'),currval('s_poll'),'No sé',2); insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'¿Cree usted que fortalecer la participación de los países emergentes en los procesos económicos internacionales mejorará el sistema económico mundial?','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Sí',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'No',2); --insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) -- values (nextval('s_poll_det'),currval('s_poll'),'No sé',2); insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'¿Usted considera importante para los países latinoamericanos que la primera Cumbre Mundial "Financiación para el Desarrollo” tenga como sede a México?','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Sí',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'No',2); --insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) -- values (nextval('s_poll_det'),currval('s_poll'),'No sé',2); insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'¿Usted espera que la Cumbre Mundial de resultados positivos para el mejoramiento de la economía mundial?','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Sí',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'No',2); --insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) -- values (nextval('s_poll_det'),currval('s_poll'),'No sé',2); commit; begin; insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'¿Has escuchado el programa de radio "Fox Contigo" del Presidente Fox?','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Sí',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'No',2); insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'En comparación con hace tres meses ¿has notado algún cambio en el programa de radio del Presidente?','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Sí',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'No',2); insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'En general, a raíz de lo que has escuchado en el programa de radio "Fox Contigo", ¿mejoró o empeoró tu opinión sobre el Gobierno de Fox?','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Mejoró',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Sigue igual de buena',2); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Sigue igual de mala',3); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Empeoró',4); insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'¿Y te gusta o no te gusta el programa de radio "Fox Contigo"?','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Me gusta',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'No me gusta',2); insert into h_poll (pll_key, pll_name, pll_type, pll_active) values (nextval('s_poll'),'Si has escuchado el programa, ¿por qué medio lo has hecho?','M','S'); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Radio tradicional',1); insert into h_poll_det(pll_det_key, pll_det_poll, pll_det_option, pll_det_order) values (nextval('s_poll_det'),currval('s_poll'),'Internet',2); commit;