首页 > 代码库 > 【MySQL笔记】字符串、时间日期转换

【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时间戳转换为现在时间
在线转换工具:http://tool.chinaz.com/Tools/unixtime.aspx



来自为知笔记(Wiz)



【MySQL笔记】字符串、时间日期转换