INSERT INTO `user` ( `name`,`val`)
我們提供的服務(wù)有:成都做網(wǎng)站、網(wǎng)站設(shè)計(jì)、微信公眾號(hào)開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、孟村ssl等。為近1000家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的孟村網(wǎng)站制作公司
VALUES
(
'小名',
UNIX_TIMESTAMP() //這個(gè)是當(dāng)前時(shí)間戳
)
如何處理mysql中的時(shí)間戳讀取問題
MySQL 獲得當(dāng)前時(shí)間戳函數(shù):current_timestamp, current_timestamp()
mysql select current_timestamp, current_timestamp();
+---------------------+---------------------+
| current_timestamp | current_timestamp() |
+---------------------+---------------------+
| 2008-08-09 23:22:24 | 2008-08-09 23:22:24 |
+---------------------+---------------------+
獲得當(dāng)前日期+時(shí)間(date + time)函數(shù):now()
mysql select now();