If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > Formatting the date on insert

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 11-22-04, 15:50
subnet_rx subnet_rx is offline
Registered User
 
Join Date: Oct 2004
Posts: 6
Formatting the date on insert

I have learned how to format the date coming out of a database, but if I have a user enter the date in the format 08/04/2004, how can I change that to 2004-08-04?
Reply With Quote
  #2 (permalink)  
Old 11-25-04, 01:43
Sudar Sudar is offline
Registered User
 
Join Date: Jul 2004
Location: Mars
Posts: 137
Thumbs up Try this

Try the following

select from_unixtime(unix_timestamp('08/04/2004'))

Let me know whether this solved ur problem
__________________
Sudar

--
My Blog
Reply With Quote
  #3 (permalink)  
Old 11-25-04, 11:48
subnet_rx subnet_rx is offline
Registered User
 
Join Date: Oct 2004
Posts: 6
actually, I have decided to just use a calendar to let the user select a date and it inputs it into the form. It was just more convenient than formatting dates going in and out, on every query.
Reply With Quote
  #4 (permalink)  
Old 11-25-04, 13:08
guelphdad guelphdad is offline
Registered User
 
Join Date: Mar 2004
Posts: 440
Sudar, I just tried what you have above on mysql 5.x
It gives a date sometime in 1969.
Reply With Quote
  #5 (permalink)  
Old 11-25-04, 23:44
Sudar Sudar is offline
Registered User
 
Join Date: Jul 2004
Location: Mars
Posts: 137
Thumbs up

You r correct guhelpdad, thnks for pointing it out to me

Unix_timestamp accepts date in yyyy-mm-dd format only..
so only the following will work

select from_unixtime(unix_timestamp('2004-08-20'));
__________________
Sudar

--
My Blog
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On