程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> 解析MySQL設置以後時光為默許值的辦法

解析MySQL設置以後時光為默許值的辦法

編輯:MySQL綜合教程

解析MySQL設置以後時光為默許值的辦法。本站提示廣大學習愛好者:(解析MySQL設置以後時光為默許值的辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是解析MySQL設置以後時光為默許值的辦法正文


MySQL設置以後時光為默許值的成績我們常常會碰到,上面就為您引見MySQL設置以後時光為默許值的完成全步調,願望對您能有所啟發。
數據庫:test_db1
創立表:test_ta1
兩個字段:id              (自增 且為主鍵),
createtime 創立日期(默許值為以後時光)

辦法1、是用alert table語句:

use test_db1;
create table test_ta1(
id mediumint(8) unsigned not nulll auto_increment,
createtime datetime,
primary key (id)
)engine=innodb default charset=gbk;
alert table test_ta1 change createtime createtime timestamp not null default now();

辦法2、直接創立便利:

use test_db1;
create table test_ta1(
id mediumint(8) unsigned not nulll auto_increment,
createtime timestamp not null default current_timestamp,
primary key (id)
)engine=innodb default charset=gbk;

辦法3、可視化對象如 mysql-front
右擊createtime屬性
把Type屬性值改成timestamp
default 屬性選擇<INSERT-TimeStamp>
以上就是MySQL設置以後時光為默許值的辦法引見。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved