vote up 4 vote down star
2

Hi All,

Thanks for reading.

I know what AM/PM stand for (ante-meridiem and post-meridiem), but what are they called?

For example, if I am building a date/time from some fields, such as date, hour, minute, am/pm, and want the user to be able to select the time from some select menus like 1-12, 00-60, and am/pm, I would name the selects Hour, Minute, and ____ ?

Normally, I just call it AMPM, but there must be a name for this piece of data?

Thanks!

Edit

Perfect - thanks!

Never again will I have to make weird field names like DueTimeHour, DueTimeMinute, and DueTimeAMPMThingy!

Edit 2

Ok, seriously, if somebody felt the need to downvote the question, that's fine, but feel free to add a comment with the reason for your disgruntlement.

Otherwise, the rest of us might think someone out there believes having a firm understanding of the data you are working with is not programming related.

flag

80% accept rate
3  
I'm not saying you are doing this, but to future readers. Do not store the time with those fields. Store a single datetime field with timezone and use formatting functions to divide/present the date to the interface/user. – Vinko Vrsalovic Sep 23 at 22:44
1  
It's funny that the question intrinsically is not programming related, but all programmers can understand why you posted it here. – Jader Dias Sep 23 at 22:59
1  
Vinko is correct. It may be necessary to collect the data from the user in such fields, but you should never store temporal data in this fashion, build a valid datetime field and store it that way. Except perhaps if you need to store a recurring event, in which case you may need to store the date info as one or more temporal expression, which would be used to calculate what days match the event. Of course, then it's not really date data anymore... – Eli Sep 24 at 10:25

3 Answers

vote up 8 vote down check

Wikipedia http://en.wikipedia.org/wiki/12-hour_clock seems to think this is called a "period":

The 12-hour clock is a time conversion convention in which the 24 hours of the day are divided into two periods...

link|flag
vote up 1 vote down

I've always heard them referred to as "12 hour notation" but I'm not sure if that's official.

link|flag
vote up 11 vote down

The Unicode standard for date/time formatting calls it "period".

link|flag
I like this a lot more than 12 hour notation! – Mark Hurd Sep 23 at 22:28
2  
<I like this a lot more than 12 hour notation> Nonetheless, AMPMDesignator would probably be one of the clearest choices for a field name. – binarycoder Sep 23 at 22:30
BC was first, but definite upvote from me. – Eli Sep 23 at 22:34

Your Answer

Get an OpenID
or

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