摘要:
一:索引类型 普通索引 唯一索引 主键索引 组合索引 全文索引 1:直接创建普通索引 1 create index index_lname on person (lname); 2:创建唯一索引 1 create unique index person_index_unique_fname on s 阅读全文
摘要:
1:查看MySQL提供的所有存储引擎 show engines ; 2:查看表的存储引擎 show table status like "table_name" ; MyISAM和InnoDB区别 MyISAM是MySQL的默认数据库引擎(5.5版之前)。虽然性能极佳,而且提供了大量的特性,包括全文 阅读全文