創建表
CREATE TABLE `t1` ( `id` int(11) NOT NULL AUTO_INCREMENT, `msg` varchar(20) NOT NULL DEFAULT '', `crcmsg` int(15) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8
//插入數據
insert into t1 (msg) values('www.baidu.com'),('www.sina.com');
分別給msg, crcmsg 字段添加索引
alter table t1 add index msg(msg(5)); update t1 set crcmsg=crc32(msg);
alter table t1 add index crcmsg(crcmsg);
開始做測試
最後數據表結構
根據key_len的長度的大小從而給數據庫查詢提高速度。
自己做的小測試,希望能夠給您帶來收獲,祝您工作愉快。