分享更有价值
被信任是一种快乐

MySQL 5.6中timestamp和datetime区别有哪些

文章页正文上

小编给大家分享一下MySQL 5.6中timestamp和datetime区别有哪些,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧! MySQL会根据当前时区转化TIMESTAMP值,在查询时候会根据当前时区来处理。

mysql> create table test2(a int(20));
Query OK, 0 rows affected (0.07 sec)

mysql> insert into test2 values(1466929145);
Query OK, 1 row affected (0.00 sec)

mysql> select * from test2;
+————+
| a |
+————+
| 1466929145 |
+————+
1 row in set (0.00 sec)

mysql> select from_unixtime(a) from test2;
+———————+
| from_unixtime(a) |
+———————+
| 2016-06-26 08:19:05 |
+———————+
1 row in set (0.00 sec)

mysql> insert into test2 values(14669291450);
Query OK, 1 row affected, 1 warning (0.00 sec)

mysql> select from_unixtime(a) from test2;
+———————+
| from_unixtime(a) |
+———————+
| 2016-06-26 08:19:05 |
| 2038-01-19 03:14:07 |
+——————-免费主机域名–+
2 rows in set (0.00 sec)

mysql> insert into test2 values(14669291450);
Query OK, 1 row affected, 1 warning (0.00 sec)

mysql> show warnings;
+———+——+——————————————–+
| Level | Code | Message |
+———+——+——————————————–+
| Warning | 1264 | Out of range value for column ‘a’ at row 1 |
+———+——+——————————————–+
1 row in set (0.00 sec)

mysql> select from_unixtime(a) from test2;
+———————+
| from_unixtime(a) |
+———————+
| 2016-06-26 08:19:05 |
| 2038-01-19 03:14:07 |
| 2038-01-19 03:14:07 |
+———————+
3 rows in set (0.00 sec)

查看当前时区
mysql> show variables like ‘time_zone’;
+—————+——–+
| Variable_name | Value |
+—————+——–+
| time_zone | +00:00 |
+—————+——–+
1 row in set (0.00 sec)

更改会话时区参数后,可以看到查询出来的时间发生了变化
mysql> set session time_zone=’+01:00′;
Query OK, 0 rows affected (0.00 sec)

mysql> select from_unixtime(a) from test2;
+———————+
| from_unixtime(a) |
+———————+
| 2016-06-26 09:19:05 |
| 2038-01-19 04:14:07 |
| 2038-01-19 04:14:07 |
+———————+
3 rows in set (0.00 sec)

datetime不受时区的影响
mysql> create table test3(a datetime);
Query OK, 0 rows affected (0.10 sec)

mysql> select * from test3;
Empty set (0.00 sec)

mysql> insert into test3 values(now());
Query OK, 1 row affected (0.00 sec)

mysql> commit;
Query OK, 0 rows affected (0.02 sec)

mysql> select * from test3;
+———————+
| a |
+———————+
| 2017-02-13 10:02:20 |
+———————+
1 row in set (0.00 sec)

mysql> set session time_zone=’+10:00′;
Query OK, 0 rows affected (0.00 sec)

mysql> show variables like ‘time_zone’;
+—————+——–+
| Variable_name | Value |
+—————+—-免费主机域名—-+
| time_zone | +10:00 |
+—————+——–+
1 row in set (0.00 sec)

mysql> select * from test3;
+———————+
| a |
+———————+
| 2017-02-13 10:02:20 |
+———————+
1 row in set (0.00 sec)
以上是“MySQL 5.6中timestamp和datetime区别有哪些”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注云技术行业资讯频道!

相关推荐: 什么是SQL行迁移和行链接

本篇内容介绍了“什么是SQL行迁移和行链接”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!行链接:成因:指一行存储在多个块中的情况,即行链接是跨越多块的行。第一次…

文章页内容下
赞(0) 打赏
版权声明:本站采用知识共享、学习交流,不允许用于商业用途;文章由发布者自行承担一切责任,与本站无关。
文章页正文下
文章页评论上

云服务器、web空间可免费试用

宝塔面板主机、支持php,mysql等,SSL部署;安全高速企业专供99.999%稳定,另有高防主机、不限制内容等类型,具体可咨询QQ:360163164,Tel同微信:18905205712

主机选购导航云服务器试用

登录

找回密码

注册