MySQL 建表 索引 求指导

CREATE TABLE `typecho_album` (
  `id`                  int(10)             unsigned            NOT NULL            auto_increment,
  `name`                text,                               
  `mime`                varchar(32)                             default NULL,
  `pixel`               text,                                               
  `size`                int(12)             unsigned            default '0',
  `created`             int(10)             unsigned            default '0',
  `description`         text,
  `url`                 text,
  `thumb`               text,
  `public`              int(1)              unsigned            default '1',
  `from`                varchar(32)                             default NULL,
  `category`            varchar(32)                             default NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=%charset%;

这样一个表 要建立一个索引
看了不少 还是迷糊 看看大家的说法

检索方式
select * from table
可能存在的条件
where public = 1 (pubilc 只有 0 和 1 2个值)
where from = xxx (from 有3个值)
where category = xx (category 有1-N 个值 不确定)
where created < xx and created > xx ( 这个是重点 created 是创建时间,通过时间范围检索,比如 一天,一星期, 一个月,一年)

以上条件 可能都存在 可能都不存在 也可能其中1个或者多个

谢谢!

阅读 3.1k
2 个回答

created 可以建索引,category 也可以建, public 和 from 都有3个取值,如果索引的话,还得在1/3的数据中全文索引

新手上路,请多包涵

帮顶起一下。

logo
101 新手上路
子站问答
访问
宣传栏