索引 使用索引快速定位某列中特定值的行,不需要遍历数据表所有行. 创建索引的数据结构:BTREE and HASH. 主键也是一种索引,Primary key. show index from orders;#显示索引 alter table orders add index oid_index(oid);#添加索引 drop index oid_index on orders;#删除索引 自定义函数 #自定义函数 delimiter // create function linearfunct…