up vote 3 down vote favorite
share [g+] share [fb]

Without arguing the relative merits of storing a datetime this way...

If you had a column where you stored AM or PM what would you call that column?

EDIT:

I should have figured that there'd be a group of you who couldn't resist being snarky about the idea... Nowhere do you see that I'm about to do this, that I want to do this, that I'm unclear of the myriad of reasons not to do this... but still some of you feel compelled to be priggish and concern yourselves with how much smarter you are rather than take the question for what its worth and offer something useful.

I'm also very pleased that so many aren't deserving of this slur and brought forth some great ideas. Thanks for the thoughts.

Most groups of values have names, the values from 1-24 are known as hours, from 1-12 Months, etc. But for AM/PM what's the name for group, for the collection, for the domain... and they are clearly not "meridiem" because that is the name of a single point in time Noon. That would be like calling AD and BC either Christ's or Lord's. Whereas BCE or CE would probably fit into an "Era" column.

link|improve this question
I really, really want to argue the merits of storing a datetime that way. – Darcy Casselman Jan 30 '09 at 21:40
1  
Lets just assume Mark is an intelligent person who is doing this for a good reason ... even if nobody here can comprehend what it might be. – John MacIntyre Jan 30 '09 at 21:42
@Mark Brady-In all sincerity, I realize there are often reasons to do things which may appear incorrect to outsiders who do not understand your requirements. May I be so bold as to ask what you are building where the meridiem is important independent of the time? (again sincerity IS intended) thx. – John MacIntyre Jan 31 '09 at 3:04
@John, exactly. Often we're forced into a design that is out of our control. Sometimes, all we can do is make the bad choice as painless as possible. Radiation is bad but dying of cancer is worse. I don't have the ability to alter the columns, I have been allowed to choose the name. [cont] – Mark Brady Feb 3 '09 at 16:23
I came here for help because I didn't have a satisfactory idea for the best name. I didn't expect that even when prompted NOT to, some people (Joel - "Not clear that he believes it himself") would adopt such a holier-than-thou attitude. Oh well, every site starts off with good intentions. – Mark Brady Feb 3 '09 at 16:26
show 1 more comment
feedback

11 Answers

up vote 4 down vote accepted

I'd call it meridiemoffset and store 0 or 12 in it. Easy to convert to AM or PM as necessary, but the main feature is that you can easily calculate the real hour by addition, even inside the SQL statement (which makes sorting easier and more obvious).

link|improve this answer
I almost upvoted this, but a bit field gives you the same ability: just multiply the bit value * 12 – Joel Coehoorn Jan 30 '09 at 21:38
That would work too, but wouldn't necessarily save space or increase performance, and for especially heavy usage would decrease performance very slightly. The only drawback I see to this is some idiot later will try to morph this into a timezone. – Adam Davis Jan 30 '09 at 21:41
If he's worried about performance, he'd use a datetime or 24 hour time. – Joel Coehoorn Jan 30 '09 at 21:42
Of course, I'd never run words together. But meridiem_offset would be a good name. Best one yet. – Mark Brady Feb 3 '09 at 16:14
feedback

AM and PM stand for "ante meridiem" and "post meridiem".

So one possibility for the column is: meridiem CHAR(2)

link|improve this answer
A BIT column is definitely preferable. – Jeff Jan 30 '09 at 21:39
1  
@Jeff: Does a zero signify AM or PM? How would a developer maintaining this app know which is which? Is the overhead of CHAR(2) so much that the data must be encoded in this way? – Bill Karwin Jan 30 '09 at 21:43
You could compromise with CHAR(1) – Ch00k Jan 30 '09 at 22:01
1  
Not every DB has BIT. – Mark Brady Jan 30 '09 at 23:21
@Bill: Naming of the bit column will make it obvious if 1 indicates AM or PM. A character field permits thousands of different combinations of alphanumeric characters, whereas we are only interested in the 2 that make sense. Why introduce a possible bug due to dirty data, when you can use bit? – Jeff Feb 2 '09 at 15:25
show 2 more comments
feedback

Looked up what MS calls it when you specify 't' or 'tt' in a format string, and they just say AM/PM Designator.

That didn't sit well with me, though, because the type of the column (if you must do this) should of course be bit. With that in mind, you want a column name where the value is clearly indicated by the trueness/falseness of the each record's value. Something more like IsPM, IsAM, IsAfterNoon, or IsPostMeridiem.

link|improve this answer
I agree, as a bit column that defines a designation it should start with "Is" – Element Jan 30 '09 at 22:10
Not Every DB has BIT – Mark Brady Jan 30 '09 at 23:21
If the DB doesn't have BIT, then you're likely better off with a different DB. If this isn't possible, then you may be better off with a job with a better company. – Jeff Feb 2 '09 at 15:26
@Jeff, I think Oracle is a fine database and million of installation and a majority of marketshare tends to prove my opinion has merit. You may be better off ... – Mark Brady Feb 3 '09 at 17:54
Hehe. The lack of a bit column is pretty silly though. "Majority of marketshare" is debatable these days. It really depends on how you define the market. If you are using Oracle, given that you already need at least a CHAR(1) you may just as well go CHAR(2), and that changes things. – Joel Coehoorn Feb 6 '09 at 21:11
show 1 more comment
feedback

Ok so "meridiem" is official technical term for it, but keep in mind another programmer comes along and sees a bit field called this and will likely not know wth it is.

AMPM is a little more descriptive and I think a better name

link|improve this answer
I don't know: I think the context with the rest of date parts would make it pretty clear, and failing that google. – Joel Coehoorn Jan 30 '09 at 21:37
I work in electricity, is that AmpM? ;-) – Mark Brady Jan 30 '09 at 23:22
feedback

I'd call it a terrible idea. Oh, without debating the merits? I'd call it "XM" or "meridiem", but both of these might be confusing. How'bout "amORpm"?

link|improve this answer
'XM' or 'TIME_XM' – John MacIntyre Jan 30 '09 at 21:32
Someone can punish me later for this, but +1 for terrible idea. Use military time... – Austin Salonen Jan 30 '09 at 21:34
No, use a DATETIME column. – Joel Coehoorn Jan 30 '09 at 21:36
Yes, this is a smell that indicates something very wrong. 24h time isn't the solution, though. Storing time as a proper datetime is the solution. That said, poster already knows this so the horror isn't warranted. – Michael Haren Jan 30 '09 at 21:36
I agree it's a terrible idea, but the OP's question suggests he already knows this. – Bill Karwin Jan 30 '09 at 21:36
show 6 more comments
feedback

HourPeriod -> first iteration on the clock (am) or second (pm)

Morning -> just store it as a bit

Zombie -> because that's what you are in the AM without your coffee (also, if you're storing datetime this way, you probably don't have strict naming conventions)

Alternatively, you could just do the conversion on the code-side and store the 24-hour time. 13:58 is always 'pm', 1:58 is always 'am'.

link|improve this answer
Cute... and since when do comments require 10 characters. sheesh. – ScottCher Feb 6 '09 at 20:19
feedback

If you can't store time using a 24 hr clock and you HAVE to store AM/PM values, I'd probably have a bit column called PM_Timestamp where 0 = AM and 1 = PM... but I wouldn't like it.

link|improve this answer
I appreciate the way you said that. You answered the OP thoughtfully and you respectfully added that the choice wouldn't make you very happy. That's a very polite way of putting it. hopefully you'll be participating more. – Mark Brady Feb 3 '09 at 17:58
Thank you! I appreciate the comment :o) I do intend to participate more! It's interesting to think about how we'd do things that, as developers, we feel we shouldn't do. Most of the time we can come up with alternate solutions, but it's important to be equally thoughtful when there isn't one. – Tina Orooji Feb 3 '09 at 22:19
Yes, yes... more helpful, thoughtful, constructive feedback and fewer snarky comments. 8) – ScottCher Feb 6 '09 at 20:21
feedback

I think AMPM is the best choice. It's immediately obvious what it's meant to be.

link|improve this answer
feedback

How about:

 AM_OR_PM
link|improve this answer
feedback

Granted "meridiem" is the most accurate term given the abbreviations. However, it means "noon" in Latin so it could be confusing.

If you're shooting for pure readability (and are adamantly against datetime), I would recommend either IsMorning or IsAfternoon.

link|improve this answer
Why is it "the most accurate term"? You even point out that it means noon which makes it a good flag for, well, noon. – Mark Brady Feb 3 '09 at 16:17
When dealing either ante or post, the column would imply "this meridiem" (AM or PM) but for those who don't know what AM/PM are abbreviations for would look meridiem up, find "noon" and be even more confused (even more if the data is not "AM" and "PM"). This lead to my conclusion of IsMorning ... – Austin Salonen Feb 3 '09 at 17:58
feedback

If you are using SQLServer, you can wrap non standard text with square brackets and call it "?M" ... so you'd use it like mytable.[?M] ;-)

PS-I know this can be done because my predecessor did it.

link|improve this answer
That's very interesting. – Mark Brady Feb 3 '09 at 16:17
feedback

Your Answer

 
or
required, but never shown