mysql 日期和毫秒数的转换

select UNIX_TIMESTAMP('2011-05-31 23:59:59');

select from_unixtime(1306771200);  


SELECT NOW();
select from_unixtime(1399537700);  
select UNIX_TIMESTAMP(NOW()) * 1000;

**需要注意的是select UNIX_TIMESTAMP(NOW())  输出的是秒

你可能感兴趣的:(mySql,sql,Server)