我是 mysql 新手,正在使用在线服务器(MYSQL 版本 5.1.69),我有下表
CREATE TABLE `person_info` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`person_id` int(11) NOT NULL,
`info_type_id` int(11) NOT NULL,
`info` text NOT NULL,
`note` text,
PRIMARY KEY (`id`),
KEY `idx_pid` (`person_id`),
KEY `person_info_info_type_id_exists` (`info_type_id`)
)
有人可以向我解释一下“KEY idx_pid
( person_id
)”是做什么的吗?