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.0005412752{main}( ).../index.php:0
20.07634262720Joomla\CMS\Application\SiteApplication->execute( ).../index.php:49
30.07634262720Joomla\CMS\Application\SiteApplication->doExecute( ).../CMSApplication.php:196
40.237211453584Joomla\CMS\Application\SiteApplication->dispatch( ).../SiteApplication.php:233
50.237911477912Joomla\CMS\Component\ComponentHelper::renderComponent( ).../SiteApplication.php:194
60.238511533240Joomla\CMS\Component\ComponentHelper::executeComponent( ).../ComponentHelper.php:377
70.238711560640require_once( '/var/www/vhosts/shan.info/httpdocs/components/com_k2/k2.php' ).../ComponentHelper.php:402
80.245511960272K2ControllerItem->execute( ).../k2.php:64
90.245511960272K2ControllerItem->display( ).../BaseController.php:710
100.253912610976K2ControllerItem->display( ).../item.php:78
110.253912610976K2ControllerItem->display( ).../controller.php:19
120.257812982016Joomla\CMS\Cache\Controller\ViewController->get( ).../BaseController.php:663
130.259213002384K2ViewItem->display( ).../ViewController.php:102
140.312715771784K2ViewItem->display( ).../view.html.php:742
150.312715771784K2ViewItem->loadTemplate( ).../HtmlView.php:230
160.314115944720include( '/var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php' ).../HtmlView.php:701
  • Published in MYSQL
  • Read 4094 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.0005412752{main}( ).../index.php:0
20.07634262720Joomla\CMS\Application\SiteApplication->execute( ).../index.php:49
30.07634262720Joomla\CMS\Application\SiteApplication->doExecute( ).../CMSApplication.php:196
40.237211453584Joomla\CMS\Application\SiteApplication->dispatch( ).../SiteApplication.php:233
50.237911477912Joomla\CMS\Component\ComponentHelper::renderComponent( ).../SiteApplication.php:194
60.238511533240Joomla\CMS\Component\ComponentHelper::executeComponent( ).../ComponentHelper.php:377
70.238711560640require_once( '/var/www/vhosts/shan.info/httpdocs/components/com_k2/k2.php' ).../ComponentHelper.php:402
80.245511960272K2ControllerItem->execute( ).../k2.php:64
90.245511960272K2ControllerItem->display( ).../BaseController.php:710
100.253912610976K2ControllerItem->display( ).../item.php:78
110.253912610976K2ControllerItem->display( ).../controller.php:19
120.257812982016Joomla\CMS\Cache\Controller\ViewController->get( ).../BaseController.php:663
130.259213002384K2ViewItem->display( ).../ViewController.php:102
140.312715771784K2ViewItem->display( ).../view.html.php:742
150.312715771784K2ViewItem->loadTemplate( ).../HtmlView.php:230
160.314115944720include( '/var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php' ).../HtmlView.php:701
back to top