MySQL Forums
Forum List  »  Performance

Re: enum vs tinyint
Posted by: Margaret MacDonald
Date: February 22, 2005 05:25PM

If you're using a general language such as C or PHP as a front end to mysql, I'd use option 1 (and in fact I do!! :-)

I tried using the built-in enum, but it's treated in a way that's unlike the enum construct in other languages.

Given some enum FOO defined as ('bar', 'mumble', 'fratz', 'gorp'), you can't query WHERE FOO < 'fratz' and expect to get all records where FOO is either 'bar' or 'mumble'. MySQL does a *string* comparison--it doesn't map the strings onto their positional values first and then compare those integers, as other languages do. So you would only get records where FOO is 1 ('bar') even though 'fratz' maps to 3 and 'mumble' maps to 2.

It's a very strange and, to me, unsatisfactory way to do things.

Options: ReplyQuote


Subject
Views
Written By
Posted
8047
February 18, 2005 02:55AM
3712
February 18, 2005 09:50AM
Re: enum vs tinyint
3576
February 22, 2005 05:25PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.