vote up 4 vote down star
2

Hello,

I've got a question concerning fields in databases wich are measures that might be displayed in different units but are stored only in one, such as "height", for example.

Where should the "pattern unit" be stated?. Of course, in the documentation, etc... But we all know nobody reads the documentation and that self-docummented things are preferrable.

From a practical point of view, what do you think of coding it in the database field (such as height_cm for example)?.

I find this weird at a first look, but I find it practical to avoid any mistakes when different people deal with the database directly and the "pattern unit" will never change.

What do you think?.

Regards.

flag
I concur with Scott; what's wrong with naming the field such that the units in which the measurement is expressed are obvious? – Onorio Catenacci Oct 6 '08 at 14:13

3 Answers

vote up 8 vote down check

What's weird about height_cm? Looks good to me.

Sometimes you see measures and units in two separate fields, which is much more painful.

As long as you know the units aren't going to change, I think height_cm is a good way to deal with it.

link|flag
Agreed, but I'd go a step further and be very clear. If I saw "height_cm" I'd assume that they meant height in centimeters but I've been burned by screwy field names before and would certainly spent a few cycles confirming and second guessing. Characters are cheap: call it "height_in_centimeters" – TrickyNixon Oct 6 '08 at 14:18
Be sure to spell it correctly for who you expect to read or maintain it. 'Metre' is the scientific standard spelling, but 'meter' is the American spelling. en.wikipedia.org/wiki/Centimetre – Liam Oct 6 '08 at 14:30
@TrickyNixon: Disagreed. Characters are not cheap. When there are STANDARDIZED abbreviations for units (or even very commonly used abbreviations) - I think it is a waste not to use them... – Yarik Oct 31 '08 at 10:09
vote up 2 vote down

Most databases support comments on columns. For example in Postgres you could set a comment like this:

COMMENT ON COLUMN my_table.my_column IS 'cm';

Storing the unit name this way means your database is self-documenting. I would also strongly recommend using standard scientific units (i.e. the metric system).

link|flag
I wouldn't rely on a maintenance programmer to read the column comment! – finnw Oct 6 '08 at 14:14
Agreed, for such a small amount of data, go with 'height_in_centimetres' as the column name. but for more complex units such as "kilogram metres squared per second squared" I would definitely use the comments. And trust me, such units do occur. – Liam Oct 6 '08 at 14:27
vote up 0 vote down

I agree, nothing wrong with adding the unit to the field name.

The only thing I'd say is to make the naming convention consistent across your database - i.e. not "height_cm" and "mm_width"!

link|flag

Your Answer

Get an OpenID
or

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