GeoIP table join with table of IP's in MySQL
I am having a issue finding a fast way of joining the tables looking like that: mysql> explain geo_ip; +--------------+------------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +--------------+------------------+------+-----+---------+-------+ | ip_start | varchar(32) | NO | | "" | | | ip_end | varchar(32) | NO | | "" | | | ip_num_start | int(64) unsigned | NO | PRI | 0 | | | ip_num_end | int(64) unsigned | NO | | 0 | | | country_code | varchar(3) | NO | | "" | | | country_name | varchar(64) | NO | | "" | | | ip_poly | geometry | NO | MUL | NULL | | +--