MySQL笔记字符串时间日期转换
Posted 萱草yy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL笔记字符串时间日期转换相关的知识,希望对你有一定的参考价值。
1、新增一列,将字符串日期(年、月、日)转换为Date类型
报错:Error Code: 1175. You are using safe update:http://jingyan.baidu.com/article/e5c39bf58ed69239d76033a4.html
2、unix时间戳和普通时间之间的转换:
SELECT now(); #现在时间
SELECT unix_timestamp(now()); 现在时间转换为unix时间戳
SELECT from_unixtime(unix_timestamp(now())); unix时间戳转换为现在时间
以上是关于MySQL笔记字符串时间日期转换的主要内容,如果未能解决你的问题,请参考以下文章