一、unix_timestamp 函式用法
1、unix_timestamp() 返回當前時間戳。另外,current_timestamp() 也有同樣作用。
select unix_timestamp() #輸出:1530230400
2、unix_timestamp(string date) 返回 date 對應的時間戳,date 格式必須為 yyyy-mm-dd hh:mm:ss。
select unix_timestamp('2018-06-29 00:00:00
');
3、unix_timestamp(string date, string format) 返回 date 對應的時間戳,date 格式由 format 指定。
select unix_timestamp('2018/06/29 09
', '
yyyy/mm/dd hh
');
二、from_unixtime 函式用法
1、from_unixtime(int/bigint timestamp) 返回 timestamp 時間戳對應的日期,格式為 yyyy-mm-dd hh:mm:ss。
select from_unixtime(1000000000); //輸出:2001-09-09 09:46:40
2、from_unixtime(int/bigint timestamp, string format) 返回 timestamp 時間戳對應的日期,格式由 format 指定。
select from_unixtime(1000000000, 'yyyy/mm/dd hh
');
時間字串
datetime dt datetime.now label1.text dt.tostring 2005 11 5 13 21 25 label2.text dt.tofiletime tostring 127756416859912816 label3.text dt.tofiletimeutc...
航班時間(時間和字串處理)
題意 小 h 的女朋友去中東交換。小 h 並不知道中東與北京的時差。但是小 h 得到了女朋友來回航班的起降時間。小 h 想知道女朋友的航班飛行時間是多少。對於乙個可能跨時區的航班,給定來回程的起降時間。假設飛機來回飛行時間相同,求飛機的飛行時間。起降時間的格式如下 h1 m1 s1 h2 m2 s2...
Python 時間和字串轉換
例子 usr bin python coding utf 8 import time 格式化成2016 03 20 11 45 39形式 print time.strftime y m d h m s time.localtime 格式化成sat mar 28 22 24 24 2016形式 pri...