Tengo una tabla a nombre de ips como a continuación:
CREATE TABLE `ips` (
`id` int(10) unsigned NOT NULL DEFAULT '0',
`begin_ip_num` int(11) unsigned DEFAULT NULL,
`end_ip_num` int(11) unsigned DEFAULT NULL,
`iso` varchar(3) DEFAULT NULL,
`country` varchar(150) DEFAULT NULL
) ENGINE=InnoDB
Supongamos que tengo un countryid
campo en esta tabla de la tabla del país que es el siguiente:
CREATE TABLE `country` (
`countryid` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`ordering` smallint(5) unsigned NOT NULL DEFAULT '0',
`iso` char(2) NOT NULL,
PRIMARY KEY (`countryid`)
) ENGINE=InnoDB
Hay alrededor de 100,000 registros en la tabla ips. ¿Hay alguna consulta para el siguiente escenario?
Compruebe si ips.iso
es igual a country.iso
, si es igual, luego agregue country.coutryid a ese registro. No se me ocurrió ninguna forma de hacerlo. ¿Tienes alguna idea de cómo hacer eso?