4
다른 테이블의 값을 기준으로 한 테이블을 즉시 업데이트하는 방법은 무엇입니까?
아래와 같이 ips라는 이름의 테이블이 있습니다. 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 countryid국가 테이블 의이 테이블에 필드 가 있다고 가정 합니다. CREATE TABLE `country` ( …