1.unix_timestamp

将时间转化为时间戳。(date 类型数据转换成 timestamp 形式整数)

没传时间参数则取当前时间的时间戳

mysql> select unix_timestamp();
+------------------+
| unix_timestamp() |
+------------------+
|       1361586358 |
+------------------+
1 row in set (0.01 sec)

mysql> select unix_timestamp('2013-01-01 10:10:10');
+---------------------------------------+
| unix_timestamp('2013-01-01 10:10:10') |
+---------------------------------------+
|                            1357006210 |
+---------------------------------------+
1 row in set (0.00 sec)

2.from_unixtime

将timestamp 形式整数 转化为 date类型

mysql>  select from_unixtime(1355272360);
+---------------------------+
| from_unixtime(1355272360) |
+---------------------------+
| 2012-12-12 08:32:40       |
+---------------------------+
1 row in set (0.00 sec)

当然也可以指定输出的时间格式:

mysql>  select from_unixtime(1355272360,'%Y%m%d');
+------------------------------------+
| from_unixtime(1355272360,'%Y%m%d') |
+------------------------------------+
| 20121212                           |
+------------------------------------+

3.关于mysql 时间戳的限制

目前timestamp 所能表示的范围在 1970  -  2038之间 。

超过这个范围 得到的时间将会溢出 得到的时间是null.

mysql>  select from_unixtime(0);
+---------------------+
| from_unixtime(0)    |
+---------------------+
| 1970-01-01 08:00:00 |
+---------------------+

mysql> select from_unixtime(2147483647);
+---------------------------+
| from_unixtime(2147483647) |
+---------------------------+
| 2038-01-19 11:14:07       |
+---------------------------+
1 row in set (0.00 sec)

最新文章

  1. php计算字符串长度
  2. hp-pa安装oracle和bash
  3. Java线程基础实例
  4. Android工程文件下assets文件夹与res文件夹的区别
  5. ios手势
  6. ACdream OJ 1099 瑶瑶的第K大 --分治+IO优化
  7. 如何使用Unix/Linux grep命令——磨刀不误砍柴工系列
  8. SpringMvc入门二----HelloWorld
  9. hdu1003 Max Sum(经典dp )
  10. Android开发手记(14) 使用MediaPlayer播放mp3
  11. java.io.FileNotFoundException: class path resource [bean/test/User.hbm.xml] cannot be opened because it does not exist
  12. 允许debian wheezy支持IOS7+的iphone.
  13. python基础---pymsql
  14. 使用 Moq 测试.NET Core 应用 -- 其它
  15. http-request详解
  16. Euclideanloss_layer层解析
  17. Python3 与 NetCore 基础语法对比(String专栏)
  18. Java 中 & | ^ 运算符的简单使用
  19. 阅读Cortex-A53 Technical Reference Manual笔记
  20. Provinces of China

热门文章

  1. Yii2 advance swiftmailer 不能发送邮件
  2. [JOYOI] 1415 西瓜种植
  3. Python_编程题集_002_菱形
  4. (十六)python 3 全局变量局部变量
  5. Python通过Openpyxl包汇总表格,效率提升100倍
  6. python-基本运算符(解压缩-必考)
  7. Java中的事务——全局事务与本地事务
  8. Run-time Settings--General--Run Logic
  9. 七牛云赵之健:多维度融合赋能视频 AI 的实践
  10. Codeforces932D. Tree