mysql TO_DAYS(date) 函数

TO_DAYS(date)

给定一个日期date, 返回一个天数 (从年份0开始的天数 )。

mysql> SELECT TO_DAYS(950501);

-> 728779

mysql> SELECT TO_DAYS(‘1997-10-07′);

-> 729669

TO_DAYS() 不用于阳历出现(1582)前的值,原因是当日历改变时,遗失的日期不会被考虑在内。

请记住, MySQL“日期和时间类型”中的规则将日期中的二位数年份值转化为四位。例如,  ‘1997-10-07′和 ‘97-10-07′ 被视为同样的日期:

mysql> SELECT TO_DAYS(‘1997-10-07′), TO_DAYS(‘97-10-07′);

-> 729669, 729669

对于1582 年之前的日期(或许在其它地区为下一年 ), 该函数的结果实不可靠的。

Last modified onSunday, 14 October 2012 04:07

( ! ) Warning: count(): Parameter must be an array or an object that implements Countable in /var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php on line 169
Call Stack
#TimeMemoryFunctionLocation
10.0006412320{main}( ).../index.php:0
20.08144262288Joomla\CMS\Application\SiteApplication->execute( ).../index.php:49
30.08144262288Joomla\CMS\Application\SiteApplication->doExecute( ).../CMSApplication.php:196
40.274011453280Joomla\CMS\Application\SiteApplication->dispatch( ).../SiteApplication.php:233
50.274711477608Joomla\CMS\Component\ComponentHelper::renderComponent( ).../SiteApplication.php:194
60.275411532936Joomla\CMS\Component\ComponentHelper::executeComponent( ).../ComponentHelper.php:377
70.275711560336require_once( '/var/www/vhosts/shan.info/httpdocs/components/com_k2/k2.php' ).../ComponentHelper.php:402
80.283711959968K2ControllerItem->execute( ).../k2.php:64
90.283711959968K2ControllerItem->display( ).../BaseController.php:710
100.293712610672K2ControllerItem->display( ).../item.php:78
110.293712610672K2ControllerItem->display( ).../controller.php:19
120.297912981712Joomla\CMS\Cache\Controller\ViewController->get( ).../BaseController.php:663
130.298813002080K2ViewItem->display( ).../ViewController.php:102
140.357415771480K2ViewItem->display( ).../view.html.php:742
150.357415771480K2ViewItem->loadTemplate( ).../HtmlView.php:230
160.358915944416include( '/var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php' ).../HtmlView.php:701
  • Published in MYSQL
  • Read 4092 times

( ! ) Notice: Only variables should be assigned by reference in /var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php on line 478
Call Stack
#TimeMemoryFunctionLocation
10.0006412320{main}( ).../index.php:0
20.08144262288Joomla\CMS\Application\SiteApplication->execute( ).../index.php:49
30.08144262288Joomla\CMS\Application\SiteApplication->doExecute( ).../CMSApplication.php:196
40.274011453280Joomla\CMS\Application\SiteApplication->dispatch( ).../SiteApplication.php:233
50.274711477608Joomla\CMS\Component\ComponentHelper::renderComponent( ).../SiteApplication.php:194
60.275411532936Joomla\CMS\Component\ComponentHelper::executeComponent( ).../ComponentHelper.php:377
70.275711560336require_once( '/var/www/vhosts/shan.info/httpdocs/components/com_k2/k2.php' ).../ComponentHelper.php:402
80.283711959968K2ControllerItem->execute( ).../k2.php:64
90.283711959968K2ControllerItem->display( ).../BaseController.php:710
100.293712610672K2ControllerItem->display( ).../item.php:78
110.293712610672K2ControllerItem->display( ).../controller.php:19
120.297912981712Joomla\CMS\Cache\Controller\ViewController->get( ).../BaseController.php:663
130.298813002080K2ViewItem->display( ).../ViewController.php:102
140.357415771480K2ViewItem->display( ).../view.html.php:742
150.357415771480K2ViewItem->loadTemplate( ).../HtmlView.php:230
160.358915944416include( '/var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php' ).../HtmlView.php:701
back to top