mysql 時間轉化函數

獲取當前時間戳

select unix_timestamp();
  • 1

mysql

select unix_timestamp(now());
  • 1

獲取當前時間

select now();
  • 1

時間轉時間戳

select unix_timestamp('2018-01-15 09:45:16');
  • 1

時間戳轉時間

select from_unixtime(1515980716);
  • 1

時間戳格式化

SELECT from_unixtime(1515980716, '%Y-%m-%d %H:%i:%S');
  • 1

時間格式化

select date_format(now(), '%Y-%m-%d');
select date_format('2018-01-15 09:45:16', '%Y-%m-%d');
  • 1
  • 2

可視化轉換

http://tool.chinaz.com/Tools/unixtime.aspxsql

mysql
mysql

相關文章
相關標籤/搜索