Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am not a database guy, but am trying to clean up another database. So my question is would normalizing the gender table be going too far?

User table:
userid int pk,
genderid char(1) fk
etc...

gender table:
genderid char(1) pk,
gender varchar(20)

Now at first it seemed silly to me, but then I considered it because i can then have a constant data source to populate from or bind from. I will be using WPF. If it was another framework I would probably avoid it, but what do you think?

share|improve this question
3  
This is maybe not what you are asking but creating a Gender table has nothing to do with normalization. In creating that table you are apparently just substituting the dependency userid->genderid in place of userid->gender. The User table is therefore no more normalized than it was without the Gender table. All you've done is change the name and type of an attribute. So purely from the point of view of normalization such a change is totally unnecessary. – sqlvogel Aug 18 '10 at 16:00
In most languages, it would be hard to write a grammatically-correct letter to someone without knowing their gender. – dan04 Aug 19 '10 at 13:37
2  
Argh. My brain is broken by quasi-memes. Reading your question, I can't help thinking of this - qntm.org/gay (Which is an awesome read.) – pinkgothic Aug 19 '10 at 16:39
It also explains how it differs from the old polygamy and interracial marriage issues. Those were just a simple CREATE UNIQUE INDEX and DROP CONSTRAINT. – dan04 Aug 20 '10 at 1:17
3  
@meagar: I would tell you it's none of your business why I had business requirements that said I need to collect the gender information. – Ken White Apr 28 '11 at 22:12

8 Answers

up vote 8 down vote accepted

Whether or not you choose to normalize your table structure to accomodate gender is going to depend on the requirements of your application and your business requirements.

I would normalize if:

  • You want to be able to manage the "description" of a gender in the database, and not in code.
    • This allows you to quickly change the description from Man/Woman to Male/Female, for example.
  • Your application currently must handle, or will possible handle in the future, localization requirements, i.e. being able to specify gender in different languages.
  • Your business requires that everything be normalized.

I would not normalize if:

  • You have a relatively simple application where you can easily manage the description of the gender in code rather than in the database.
  • You have tight programmatic control of the data going in and out of the gender field such that you can ensure consistency of the data in that field.
  • You only care about the gender field for information capture, meaning, you don't have a lot of programmatic need to update this field once it is set the first time.
share|improve this answer
Thank you. I didn't consider the localization issue, which I would like to plan for just in case. – Adam Aug 18 '10 at 15:44
1  
Also, other values allow multiple null meanings, such as "Not known", "Not disclosed", or other possibilities. – Adam Musch Aug 18 '10 at 18:07
1  
@Adam I would make the field a char(1) and simply allow null. – meagar Aug 18 '10 at 19:14
1  
@meagar - and what does NULL mean then - unknown, not disclosed, undefined, transhuman? It's an indeterminate value. Plus, inclusion of nulls generally makes logic less clear (gotta do trivalue, or use coalesce()) when in this case, it's pretty avoidable. – Adam Musch Aug 19 '10 at 4:49
1  
@Ken I'm begin completely open-minded here, but you're going to have to make a better case than "null complicates things". In 10 years of database development I've never come up against a situation where representing "unknown", "undefined" or "not set" with a NULL has caused a problem. Quite the opposite, it usually clarifies things significantly. – meagar Apr 30 '11 at 23:48
show 5 more comments

I'm also not a database guy but I do it. It gives me the possibility to assure that only the genders are entered, that are valid (referencial integrity) and I can also use it to populate the selection control.

share|improve this answer
2  
Makes it customisable for localisation also. – Binary Worrier Aug 18 '10 at 15:17

I can think of applications where I'd use different columns for sex and gender, have three values for sex (male/female/decline to state) and six for gender (male/female/transgendered male/transgendered female/asexual/decline to state). Granted, I live in San Francisco, where there's an level of public discussion of transgender issues that much of the rest of the world is behind the curve on.

The point is: without a compelling reason to think otherwise, I'd assume that any simplifying assumption I made about demographics was limited and parochial. The cost of breaking sex out to its own table is small now and expensive later. I wouldn't avoid the small cost on the basis of an assumption.

share|improve this answer
1  
Apparently someone either doesn't know or doesn't want to hear about transgender issues. – Robert Rossney Aug 19 '10 at 1:00
+1, Robert. (And I live in the northeastern US.) – Ken White Apr 28 '11 at 22:23

Just use a bit. 0 for male, 1 for female. Normalizing this to a lookup table only makes sense if you plan on adding "other. "

See also this post.

share|improve this answer
4  
-1: Forms that have precisely two options for gender belong in the last century. And in any case, what about the records where you don't have the information? – Vicky Aug 18 '10 at 15:20
3  
@Vicky The degree to which you specify options for gender should probably depend on the business needs and sensitivity concerns within the application. Not all applications are going to have the same needs, though if you intend to only include the male/female binary option, perhaps sex would be a better word to use than gender. – Ben McCormack Aug 18 '10 at 15:37
1  
@Ben: If you have a business need to collect the information at all, then surely you have a business need to collect it correctly. – Vicky Aug 18 '10 at 15:51
6  
@Vicki the question was if it was worth normalizing a field that has exactly two possible values. In my opinion, No, it is not. Also, despite which century we're in, I'm having trouble envisioning a situation in which anyone may legally identify themselves as something other than male or female, and if the user doesn't answer the question, "null" always works just fine. – David Lively Aug 18 '10 at 17:45
2  
Having Gender in the User table is already normalized assuming that each user has only one gender. Creating a new Gender table doesn't make it more normalized - and that's true no matter how many gender options there are. – sqlvogel Aug 18 '10 at 18:35
show 7 more comments

Well, your company might have a requirement that, if possible, everything be normalized.

Also, depending on the business & data, you might need to include transgenders as well which would create 3+ genders (I don't know how many there are, haven't checked)

share|improve this answer
Even if there is one, you still would want to do it... Take the 5 mins now, rather than the 60 mins later... – NinjaCat Aug 18 '10 at 15:24

I'll remark on another aspect: sorting. Normally, 'M' sorts after 'F'; in a project one time, a database table had a gender field with either of those two values. There was a desire to be able to sort results on the gender (census data) and a further preference to have 'M' appear before 'F'. My solution was to add a separate lookup table, assigning the Male value an ID of 0, and Female an ID of 1. So queries on the main table could easily be sorted on the new genderID field.

share|improve this answer
4  
What database query language doesn't let you write ORDER BY Gender DESC? – dan04 Aug 18 '10 at 19:12
@dan04 Keep in mind that this was several years ago, so I'm not certain of the circumstances now. But I think the other requirement was to be able to filter on that column, as well as sort it, and numbers are easier to filter than characters. I think the sort+filter need led to the solution. – Grant Palin Aug 18 '10 at 21:54

Just thought I'd throw an opinion in here. @Ben McCormack has a great answer with a minor caveat: Regarding localization, there are sometimes better ways of handling this than having the values defined directly in your database.

For example, you mention WPF. With .Net you have various localization resources that are much better suited to managing differences in whether to emit "Male" or "Samec" (Czech).

By letting the built in localization features take care of this you don't have to worry about having multiple database records defining the exact same thing.. which could complicate reporting.


That said, I'd suggest that you might want to consider if "gender" is really what you are after. Gender is defined as "a set of characteristics distinguishing between male and female".

On the face of it this sounds like your standard Male/Female options; but it's not. Gender is much more complicated than that as it needs context in order to have meaning. For example, in the context of a relationship a Male (by Sex) could have one of several "genders": Masculine, Feminine or even Neutral. This is regardless of what sex their partner is.

In the context of just an individual, a Male (by Sex) might be Masculine, Feminine, Neutral, Transgender, Intersex or any of a number of other options acceptable to the person filling out the form.

At least one person commented that Gender is necessary in order to determine the honorific used in mailings. I'd suggest that there is no relationship between gender and those honorifics. For example, a Female (by Sex) might want to be addressed as Ms/Miss/Mrs/Dr/Madam/Professor or even Mr if they are in the process of, or have completed, surgery to become "Male". That list is by no means all inclusive and in any event it's much better to allow that person to select how they want to be addressed.


Which leads me to my last item: Before collecting any piece of data you should have a defined reason for having it. My company specializes in data collection through online forms. One of the things we do is look at what our clients are asking for and go field by field to determine if the data is even used anywhere.

More often than not an entity (company/governmental/etc) asks for far more information than they care about. This can have additional consequences in the event the data is lost, stolen or simply viewed by unauthorized individuals. Further there is a burden placed on the person filling out the forms for each field they are asked to complete.

I bring this up because "Gender" is almost never needed for any normal system. Instead, Sex is a better qualifier and even then it has little value. Exempting dating sites and governmental census.

share|improve this answer

Yes. I think that You can use enum in code and bind eventuatly to it.

null - unknow ; 0 - male ; 1 - female;

or you can use bool type to define this

null - unknow; true - male; false - female

share|improve this answer
1  
Database design is supposed to make things easier to understand. gender == true is insane, and gender == 1 isn't much better. Also I think half the world's population will be insulted by the idea that female == false (although obviously not half of the world's population of programmers) – APC Aug 18 '10 at 16:55
I never sad that this is good, but possible, everything depend of the business needs. – Vash Aug 18 '10 at 17:22
2  
gender: true OR sex: yes please – yeffach nollid Aug 18 '10 at 19:20
5  
@APC I think the world could understand defining female as "0" and male as "1", there's some pretty obvious symbology going on there :p In before comment flagged as offensive! – meagar Aug 18 '10 at 19:25
-1 because it's a very poor answer (and because by definition a bool value can't be NULL - it's either true or false). – Ken White Apr 28 '11 at 22:26
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.