Re: Date Conversion on Mysql 4.0.2

2005-01-28 Thread Sasha Pachev
Minh La wrote: Hi, Can some help me with a date conversion problme that I am having. I have a date data in the following format: 'Month Days Year Hour:Minute AM/PM' Example: 'Aug 21, 2004 2:00 PM' So far the hours that I have spent have been in vain. I tried using str_t

Re: Date Conversion on Mysql 4.0.2

2005-01-28 Thread Hassan Schroeder
Minh La wrote: So far the hours that I have spent have been in vain. Next time a couple of minutes with the Fine Manual instead? :-) I tried using str_to_date, but it keeps failing. Looks like it's not in version 4.0.2? Quoting the FM: "STR_TO_DATE() is available as of MySQL 4.1.1." FWIW, -- Ha

Date Conversion on Mysql 4.0.2

2005-01-28 Thread Minh La
Hi, Can some help me with a date conversion problme that I am having. I have a date data in the following format: 'Month Days Year Hour:Minute AM/PM' Example: 'Aug 21, 2004 2:00 PM' So far the hours that I have spent have been in vain. I tried using str_to_date, but it k

RE: Date Conversion Function

2004-07-30 Thread christopher . l . hood
Message- From: Victor Pendleton [mailto:[EMAIL PROTECTED] Sent: Thursday, July 29, 2004 12:27 PM To: Christopher L. Hood; '[EMAIL PROTECTED] ' Subject: RE: Date Conversion Function I do not know of an MM() date function in MS SQL, only mm used for the date part. What are you att

RE: Date Conversion Function

2004-07-29 Thread Victor Pendleton
I do not know of an MM() date function in MS SQL, only mm used for the date part. What are you attempting to accomplish? -Original Message- From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: 7/29/04 11:17 AM Subject: Date Conversion Function M$ SQL server has a function MM that will do

Re: Date Conversion Function

2004-07-29 Thread Jennifer Goodie
ql.com/doc/mysql/en/Date_and_time_functions.html -- Original message from [EMAIL PROTECTED]: -- > M$ SQL server has a function MM that will do some date conversion, is > there an equivalent in MySQL ?? > -- MySQL General Mailing List For list archives: htt

Date Conversion Function

2004-07-29 Thread christopher . l . hood
M$ SQL server has a function MM that will do some date conversion, is there an equivalent in MySQL ?? Chris Hood Investigator Verizon Global Security Operations Center Email: [EMAIL PROTECTED] Desk: 972.399.5900 Verizon Proprietary NOTICE - This message and any attached files may

date conversion

2003-12-21 Thread landon kelsey
found out that 4.0 has a date format converter thanks for the Perl actually I wrote a Qt/C++ program to convert the date _ Worried about inbox overload? Get MSN Extra Storage now! http://join.msn.com/?PAGE=features/es -- MySQL Ge

RE: date conversion

2003-07-16 Thread Rudy Metzger
e date string you want to have converted (e.g. via a variable from an API or a column name from a select/update/insert..select Cheers /rudy -Original Message- From: Jonathan Patton [mailto:[EMAIL PROTECTED] Sent: woensdag 16 juli 2003 15:07 To: [EMAIL PROTECTED] Subject: date conversion I

date conversion

2003-07-16 Thread Jonathan Patton
I need to convert dates in the format below into mysql date format. If I try to change the column type to date, it wipes out the data. +-+ | 26-Jan-2001 | | 26-Jan-2001 | | 15-Apr-2001 | | 1-Nov-2001 | | 31-Oct-2001 | | 26-Jan-2001 | | 22-Jun-2001 | | 23-Jul-2000 | | 1-Nov-2001 | |

Re: Date Conversion with UltraDev (ASP)

2003-02-10 Thread Fredrick Bartlett
"+dArray[0]+"-"+dArray[1];//MM/DD/ return rDate } - Original Message - From: "Dana Shields" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 07, 2003 5:13 PM Subject: Date Conversion with UltraDev (ASP) > I am using MySQL with Ult

Re: Date Conversion with UltraDev (ASP)

2003-02-10 Thread pazenko
ht and not by volume. - Original Message - From: "Dana Shields" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, February 08, 2003 9:13 AM Subject: Date Conversion with UltraDev (ASP) I am using MySQL with Ultradev (asp server model), and I'm creating

Date Conversion with UltraDev (ASP)

2003-02-09 Thread Dana Shields
I am using MySQL with Ultradev (asp server model), and I'm creating a recordset insert form; however, the documenation is obvious that the user has to enter the date in -mm-dd format. However, this will not work for my users, and I need to allow them to enter mm/dd/ or even mm/dd/yy format.

Date Conversion with UltraDev (ASP)

2003-02-09 Thread Dana Shields
I am using MySQL with Ultradev (asp server model), and I'm creating a recordset insert form; however, the documenation is obvious that the user has to enter the date in -mm-dd format. However, this will not work for my users, and I need to allow them to enter mm/dd/ or even mm/dd/yy format.

Re: Date conversion

2002-12-08 Thread Michael She
You need to convert the date format to: -MM-DD: http://www.mysql.com/doc/en/Using_DATE.html At 08:38 PM 12/8/2002 -0500, [EMAIL PROTECTED] wrote: Hi all, I have a datetime data field in SQLServer7, and I am trying to get a recordset according to criteria that the CallDate field in the da

Date conversion

2002-12-08 Thread Sam4Software
Hi all, I have a datetime data field in SQLServer7, and I am trying to get a recordset according to criteria that the CallDate field in the database equals todays date 09/12/2002 Dim TodaysDate TodaysDate= cDate(Date) sCallsSQL = "SELECT CallBacks.CallDate,CallBac

RE: date conversion problem

2002-11-22 Thread Paul DuBois
-Original Message- From: Alex Behrens [mailto:[EMAIL PROTECTED]] Sent: Friday, 22 November 2002 13:01 To: MYSQL Subject: date conversion problem Hey All, I'm storing date values for hockey game information using the DATE value and they are stored as MMDD and when I re

RE: date conversion problem

2002-11-21 Thread Alan McDonald
this might give you some ideas select CONCAT(DAYOFMONTH(p.DATEGOLIVE),'.',MONTH(p.DATEGOLIVE),'.',YEAR(p.DATEGOLIV E)) DATEGOLIVEF from my table p > -Original Message- > From: Alex Behrens [mailto:[EMAIL PROTECTED]] > Sent: Friday, 22 November 2002 13:0

date conversion problem

2002-11-21 Thread Alex Behrens
Hey All, I'm storing date values for hockey game information using the DATE value and they are stored as MMDD and when I retrieve them from the database they are shown as: "2002-11-23" I was wondering if there was a way to have them converted to November, 23, 2002 when they are displayed on my

Re: Help about date conversion ...

2001-09-06 Thread Adams, Bill TQO
Paul DuBois wrote: > At 9:27 AM -0300 9/6/01, Amilton Martins wrote: > >I want to write date type in the format "DD/MM/" to the database? > >Can I do this with some parameter to mysql.ini? > > No. For storage, you must convert it to CCYY-MM-DD format. > For display, you can format it to the

Re: Help about date conversion ...

2001-09-06 Thread Paul DuBois
At 9:27 AM -0300 9/6/01, Amilton Martins wrote: >I want to write date type in the format "DD/MM/" to the database? >Can I do this with some parameter to mysql.ini? No. For storage, you must convert it to CCYY-MM-DD format. For display, you can format it to the style you want using DATE_FORMA

Re: Help about date conversion ...

2001-09-06 Thread Gerald Clark
No. Amilton Martins wrote: > I want to write date type in the format "DD/MM/" to the database? > Can I do this with some parameter to mysql.ini? > > ** > Amilton Martins > Infosoft Informática Ltda. > www.infosoft.inf.br > > > -

Re: Help about date conversion ...

2001-09-06 Thread Amilton Martins
I want to write date type in the format "DD/MM/" to the database? Can I do this with some parameter to mysql.ini? ** Amilton Martins Infosoft Informática Ltda. www.infosoft.inf.br - Before posting,