开发者

IDs in MySQL, standard IDs or alphanumerics?

I'm thinking of this, if I make a web site for a specific university's students should I make the ID as standard IDs on MySQL (integer, auto increment) or should I give the IDs as how is their email address is, like if the student's email addr开发者_运维百科ess is e12234@university.edu then his/her id is e12234 (on my web site). Is it ok, what about performance?

Edit: Also, there are such email addresses: n13345@university.edu (exchange student) jennajameson@university.edu (this is a professor)


I would strongly recommend a separate, independent value for the id (integer, auto increment). Id values should never change, never be updated. People change their emails all the time, corporations reissue the same email address to new users sometimes.


If an emailaddress is unique and static in your population (and make very sure it is), you may make it a primary key, and actually a full normalization would favor that option. There are however some pitfalls to consider:

  1. People change emailaddresses once in while. What if a student becomes a professor, or is harassed on his/hers emailaddress so he/she applied for a new address and got one? The primary key shold not change, ever, so there goes your schema.
  2. Sanitizing emailaddresses takes a little bit more effort then integers.
  3. Depending on how many foreign keys point to this ID, needed storage space could be increased, and joining on CHARs rather then INTs could suffer in performance (you should test that though)


Generally you'd want to map strings to ids and reference the ID eveywhere

CREATE TABLE `student` (
    `id` int unsigned NOT NULL auto_increment,
    `email` varchar(150) NOT NULL
    PRIMARY KEY  (`id`)
)

This will reduce the size of any table reference the email table as it will be using an INT instead of a VARCHAR.

Also if you used part of their email and the user ever changed their email you'd have to go back through every table and update their ID.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜