作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下 php 例程来从表中提取值。我正在尝试将 DATE
类型从“2014-08-10”值转换为“20140810”值
返回时间:
//query
$query = mysql_query("SELECT CAST(date AS DATE), EtotalDay from MonthData group by 1 order by 1")
OR die ('Query is invalid: ' . mysql_error());
//write the results
while ($row = mysql_fetch_array($query)) {echo $row['CAST(date AS DATE)'] . "," . $row['EtotalDay'] . "\n";
我怎样才能做到这一点?
最佳答案
你应该使用
DATE_FORMAT(date, '%Y%m%d')
代替 CAST(),使用列别名来完成字段检索
$query = mysql_query("SELECT DATE_FORMAT(date, '%Y%m%d') formattedDate, EtotalDay from MonthData group by 1 order by 1") or die ('Query is invalid: ' . mysql_error());
//write the results
while ($row = mysql_fetch_array($query)) {echo $row['formattedDate'] . "," . $row['EtotalDay'] . "\n";
参见手册,DATE_FORMAT
DATE_FORMAT(date,format)
Formats the date value according to the format string.
The following specifiers may be used in the format string. The “%” character is required before format specifier characters.
%d Day of the month, numeric (00..31)
%m Month, numeric (00..12)
%Y Year, numeric, four digits
关于mysql - CAST(日期 AS DATE) 日期格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25314345/
我是一名优秀的程序员,十分优秀!