Connecting Tech Pros Worldwide Help | Site Map

storing months in mysql 4

  #1  
Old July 17th, 2005, 01:55 PM
laredotornado@zipmail.com
Guest
 
Posts: n/a
Hello, I'm using PHP 4 and MySQL 4. I want to store the month and year
as a single row but I am having difficulty figuring out the best data
type to use. I suppose I could use 'DATE' and then always have the day
value be equal fto 1, but I figure there's a more elegant approach. I
leave it to on e of you experts to recommend one.

Thanks in advance, - Dave

  #2  
Old July 17th, 2005, 01:55 PM
NC
Guest
 
Posts: n/a

re: storing months in mysql 4


laredotorn...@zipmail.com wrote:[color=blue]
>
> I'm using PHP 4 and MySQL 4. I want to store the month and
> year as a single row but I am having difficulty figuring out
> the best data type to use.[/color]

The best for WHAT? How do you intend to use the data? What
typical computations will be performed on it? What will it
be routinely compared to?
[color=blue]
> I suppose I could use 'DATE' and then always have the day
> value be equal fto 1, but I figure there's a more elegant
> approach.[/color]

Again, depends on how you are going to use the data. Maybe
for your purposes it makes more sense to set the date to the
last day of the month...

Cheers,
NC

  #3  
Old July 17th, 2005, 01:57 PM
David Mackenzie
Guest
 
Posts: n/a

re: storing months in mysql 4


On 29 Apr 2005 06:16:41 -0700, laredotornado@zipmail.com wrote:
[color=blue]
>Hello, I'm using PHP 4 and MySQL 4. I want to store the month and year
>as a single row but I am having difficulty figuring out the best data
>type to use. I suppose I could use 'DATE' and then always have the day
>value be equal fto 1, but I figure there's a more elegant approach. I
>leave it to on e of you experts to recommend one.[/color]

In the past, I've stored the month as an int representing "months
since Jan 2000", or some other "beginning of time" date.

HTH.

--
David ( @priz.co.uk )
Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: Writing elapsed time as a string Gabriel Genellina answers 0 June 27th, 2008 05:23 PM
Files into MySQL Nosferatum answers 35 April 3rd, 2007 02:05 AM
Using PHP with MySQL Datetime Brandon answers 6 January 22nd, 2007 06:45 PM
what is the speed hit of "SELECT *" with MySql, as opposed to narrower database calls? lkrubner@geocities.com answers 16 July 17th, 2005 01:48 PM