mysql bigint类型转 于 datetime类型 互转

来源:互联网 发布:算法与程序设计 编辑:程序博客网 时间:2024/06/07 10:00
  1. bigint类型转换为datetime类型
  2. -- 假设 1164691264437 是 Java 里的“日期时间”:即:自1970-01-01 00:00:00以来的毫秒数
  3. /*
  4. getTime
  5. public long getTime()Returns the number of milliseconds since January 1, 1970, 00:00:00 GMT represented by this Date object. 

  6. Returns:
  7. the number of milliseconds since January 1, 1970, 00:00:00 GMT represented by this date.
  8. */
  9. mysql> select from_unixtime(1164691264437/1000);
  10. +-----------------------------------+
  11. | from_unixtime(1164691264437/1000) |
  12. +-----------------------------------+
  13. | 2006-11-28 13:21:04               |
  14. +-----------------------------------+

         2、datetime类型转换为bigint类型

  1. -- 假设 "2011-05-31 23:59:59" 是 Java 里的“日期时间”:即:自1970-01-01 00:00:00以来的毫秒数


  2. mysql> select UNIX_TIMESTAMP('2011-05-31 23:59:59');
  3. +-----------------------------------+
  4. | from_unixtime(1306857599/1000) |
  5. +-----------------------------------+      |

将Int 转为varchar经常用 concat函数,比如concat(8,'0') 得到字符串 '80'
2、将varchar 转为Int 用 cast(a as signed) a为varchar类型的字符串
as  后 可跟参数:
二进制,同带binary前缀的效果 : BINARY
字符型,可带参数 : CHAR()
日期 : DATE
时间: TIME
日期时间型 : DATETIME
浮点数 : DECIMAL
整数 : SIGNED
无符号整数 : UNSIGNED


原创粉丝点击