English 中文(简体)
从现在起转换我的证
原标题:Query to convert from datetime to date mysql

我正试图获得一个日间领域的日期。 我知道,我可以按日期——原样,但又回到了一个扼杀或“var”。 我怎样才能将结果转化为现实,而不是变幻吗?

这是我回问的:

(Select Date_Format(orders.date_purchased, %m/%d/%Y )) As Date  

我尝试了这一问题的若干组合,但无法做到:

问题——产出的格式日期?

感谢任何帮助。

最佳回答

D. 把它作为国语

SELECT CAST(orders.date_purchased AS DATE) AS DATE_PURCHASED
问题回答

无论是网络化还是因特网治理组织解决方案都将奏效。 根本问题是,>>> 功能恢复,而不是日期。 当你写信时,你写了字。

(Select Date_Format(orders.date_purchased, %m/%d/%Y )) As Date 

我认为,你基本上要求MySQL试图将以下数值格式:date_purchased。 根据这一格式,而不是用“Date”这一栏打字。 但该栏不再包含一个日期,将包含一个插图。 (Because Date_Format( Return a string, not adate)

我不认为你想要做些什么,但这是你做的事。

不要混淆价值如何看待价值。

syntax ofdate_format:

SELECT date_format(date_born,  %m/%d/%Y  ) as my_date FROM date_tbl

     %W %D %M %Y %T     -> Wednesday 5th May 2004 23:56:25
     %a %b %e %Y %H:%i  -> Wed May 5 2004 23:56
     %m/%d/%Y %T        -> 05/05/2004 23:56:25
     %d/%m/%Y           -> 05/05/2004
     %m-%d-%y           -> 04-08-13




相关问题
Mysql compaire two dates from datetime?

I was try to measure what is faster and what should be the best way to compare two dates, from datetime record in MySql db. There are several approaches how to grab a date from date time, but I was ...

iPhone Date Picker rolls over to 2010 on December 27th?

So I implemented a UIDatepicker in one of my applications for scheduling and autodialing teleconferences... everything is pretty much ready to go except, while testing I noticed that when the date ...

Convert date Python

I have MMDDYY dates, i.e. today is 111609 How do I convert this to 11/16/2009, in Python?

specifying date format when using $form->inputs() in CakePHP

I am wondering if there is a way to specify the date format in the forms created using CakePHP s $form->inputs(); Please note that this is not the individual $form->input() but instead $form->inputs() ...

NSDateFormat, super simple! Where am I screwing up?

Ok, this is really simple, maybe I m a getting a bit burnt out, but seems like it should work, Query XML feed, put out date string, format, display in a cell. The issue is I m a getting a NULL ...

sqlite writing a date into an email

I am exporting a date value from sqlite and placing it into an email. The date appears like this 279498721.322872 I am using Objective C in an Iphone App. Does anyone know how to make this export ...

热门标签