mysql 将时间戳_mysql 将时间戳直接转换成日期时间
date為需要處理的參數(shù)(該參數(shù)是Unix 時間戳),可以是字段名,也可以直接是Unix 時間戳字符串
后面的 '%Y%m%d' 主要是將返回值格式化
例如:
mysql>SELECT FROM_UNIXTIME( 1249488000, '%Y%m%d' )
->20071120
mysql>SELECT FROM_UNIXTIME( 1249488000, '%Y年%m月%d' )
->2007年11月20
UNIX_TIMESTAMP()是與之相對正好相反的時間函數(shù)
UNIX_TIMESTAMP(), UNIX_TIMESTAMP(date)
若無參數(shù)調(diào)用,則返回一個 Unix timestamp ('1970-01-01 00:00:00' GMT 之后的秒數(shù)) 作為無符號整數(shù)。若用date 來調(diào)用 UNIX_TIMESTAMP(),它會將參數(shù)值以'1970-01-01 00:00:00' GMT后的秒數(shù)的形式返回。date 可以是一個 DATE 字符串、一個 DATETIME字符串、一個 TIMESTAMP或一個當(dāng)?shù)貢r間的YYMMDD 或YYYMMDD格式的數(shù)字。
例如:
mysql> SELECT UNIX_TIMESTAMP() ; (執(zhí)行使得時間:2009-08-06 10:10:40)
->1249524739
mysql> SELECT UNIX_TIMESTAMP('2009-08-06') ;
->1249488000
[root@Mysql140 ~]# mysql?-e "SELECT UNIX_TIMESTAMP('`date -I -d 'a day ago'`') ; "
+------------------------------+
| UNIX_TIMESTAMP('2011-03-02') |
+------------------------------+
|?????????????????? 1298995200 |
+------------------------------+
如何在不同編程語言中獲取現(xiàn)在的Unix時間戳(Unix timestamp)?
Java time
JavaScript Math.round(new Date().getTime()/1000)
getTime()返回數(shù)值的單位是毫秒
Microsoft .NET / C# epoch = (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000) / 10000000
MySQL SELECT unix_timestamp(now())
Perl time
PHP time()
PostgreSQL SELECT extract(epoch FROM now())
Python 先 import time 然后 time.time()
Ruby 獲取Unix時間戳:Time.now 或 Time.new
顯示Unix時間戳:Time.now.to_i
SQL Server SELECT DATEDIFF(s, '1970-01-01 00:00:00', GETUTCDATE())
Unix / Linux date +%s
VBScript / ASP DateDiff("s", "01/01/1970 00:00:00", Now())
其他操作系統(tǒng)
(如果Perl被安裝在系統(tǒng)中) 命令行狀態(tài):perl -e "print time"
如何在不同編程語言中實現(xiàn)Unix時間戳(Unix timestamp) → 普通時間?
Java String date = new java.text.SimpleDateFormat("dd/MM/yyyy HH:mm:ss").format(new java.util.Date(Unix timestamp * 1000))
JavaScript 先 var unixTimestamp = new Date(Unix timestamp * 1000) 然后 commonTime = unixTimestamp.toLocaleString()
Linux date -d @Unix timestamp
MySQL from_unixtime(Unix timestamp)
Perl 先 my $time = Unix timestamp 然后 my ($sec, $min, $hour, $day, $month, $year) = (localtime($time))[0,1,2,3,4,5,6]
PHP date('r', Unix timestamp)
PostgreSQL SELECT TIMESTAMP WITH TIME ZONE 'epoch' + Unix timestamp) * INTERVAL '1 second';
Python 先 import time 然后 time.gmtime(Unix timestamp)
Ruby Time.at(Unix timestamp)
SQL Server DATEADD(s, Unix timestamp, '1970-01-01 00:00:00')
VBScript / ASP DateAdd("s", Unix timestamp, "01/01/1970 00:00:00")
其他操作系統(tǒng)
(如果Perl被安裝在系統(tǒng)中) 命令行狀態(tài):perl -e "print scalar(localtime(Unix timestamp))"
Example:查詢member表中近三個月用戶登錄情況
Sql代碼
select?uid,userid,username,email,FROM_UNIXTIME(lastvisit,'%Y年%m月%d')?from?members?where?lastvisit?between?UNIX_TIMESTAMP('2010-01-06')?and?UNIX_TIMESTAMP('2010-04-06');
select uid,userid,username,email,FROM_UNIXTIME(lastvisit,'%Y年%m月%d') from members where lastvisit between UNIX_TIMESTAMP('2010-01-06') and UNIX_TIMESTAMP('2010-04-06');
總結(jié)
以上是生活随笔為你收集整理的mysql 将时间戳_mysql 将时间戳直接转换成日期时间的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 1500度的近视能学计算机吗,1500度
- 下一篇: python ftplib bufsiz