create table ab
{
id int(6) not null auto_increment,
name varchar(30),
reg_date dateTime
)
這樣建立的,每次我們送出表單的時候時間還要我們單獨寫,但是如果我們将最後 的時間的類型改變,這樣我們在資料庫中每一次更新資料的時候,時間就會自動的更新,這個時候我們也不需要寫時間了
create table ab
{
id int(6) not null auto_increment,
name varchar(30),
reg_date timestamp
)
這樣每次資料庫中更新資料的時候,時間就會自動的更新。