[quote]
timestamp設定預設值是default current_timestamp;timestamp設定隨著表變化而自動更新是on update current_timestamp;接下來為您詳細介紹
timestamp設定預設值是default current_timestamp
timestamp設定隨著表變化而自動更新是on update current_timestamp
但是由於
乙個表中至多只能有乙個字段設定current_timestamp
兩行設定default current_timestamp是不行的。
還有一點要注意
複製** **如下:
create table `device` (
`id` int(10) unsigned not null auto_increment,
`toid` int(10) unsigned not null default '0' comment 'toid',
`createtime` timestamp not null comment '建立時間',
`updatetime` timestamp not null default current_timestamp comment '最後更新時間',
primary key (`id`),
unique index `toid` (`toid`)
) comment='裝置表'
collate='utf8_general_ci'
engine=innodb;
像這個設定也是不行的。
原因是mysql會預設為表中的第乙個timestamp欄位(且設定了not null)隱式設定defaulat current_timestamp。所以說上例那樣的設定實際上等同於設定了兩個current_timestamp。
分析需求
乙個表中,有兩個字段,createtime和updatetime。
1 當insert的時候,sql兩個欄位都不設定,會設定為當前的時間
2 當update的時候,sql中兩個欄位都不設定,updatetime會變更為當前的時間
這樣的需求是做不到的。因為你無法避免在兩個欄位上設定current_timestamp
解決辦法有幾個:
1 使用觸發器
當insert和update的時候觸發器觸發時間設定。
網上有人使用這種方法。當然不懷疑這個方法的可用性。但是對於實際的場景來說,無疑是為了解決小問題,增加了複雜性。
2 將第乙個timestamp的default設定為0
表結構如下:
複製** **如下:
create table `device` (
`id` int(10) unsigned not null auto_increment,
`toid` int(10) unsigned not null default '0' comment 'toid',
`createtime` timestamp not null default 0 comment '建立時間',
`updatetime` timestamp not null default current_timestamp on update current_timestamp comment '最後更新時間',
primary key (`id`),
unique index `toid` (`toid`)
) comment='裝置表'
collate='utf8_general_ci'
engine=innodb;
這樣的話,你需要的插入和更新操作變為:
insert into device set toid=11,createtime=null;
update device set toid=22 where id=1;
這裡注意的是插入操作的createtime必須設定為null!!
雖然我也覺得這種方法很不爽,但是這樣只需要稍微修改insert操作就能為sql語句減負,感覺上還是值得的。這也確實是修改資料庫最小又能保證需求的方法了。當然這個方法也能和1方法同時使用,就能起到減少觸發器編寫數量的效果了。
3 老老實實在sql語句中使用時間戳。
這個是最多人也是最常選擇的
表結構上不做過多的設計:
複製** **如下:
create table `device` (
`id` int(10) unsigned not null auto_increment,
`toid` int(10) unsigned not null default '0' comment 'toid',
`createtime` timestamp not null default current_timestamp comment '建立時間',
`updatetime` timestamp not null comment '最後更新時間',
primary key (`id`),
unique index `toid` (`toid`)
) comment='裝置表'
collate='utf8_general_ci'
engine=innodb;
這樣你就需要在插入和update的操作的時候寫入具體的時間戳。
insert device set toid=11,createtime='2012-11-2 10:10:10',updatetime='2012-11-2 10:10:10'
update device set toid=22,updatetime='2012-11-2 10:10:10' where id=1
其實反觀想想,這樣做的好處也有乙個:current_timestamp是mysql特有的,當資料庫從mysql轉移到其他資料庫的時候,業務邏輯**是不用修改的。
ps:這三種方法的取捨就完全看你自己的考慮了。順便說一下,最後,我還是選擇第三種方法。
[/quote]
MySQL中update一張表到另一張表
以下的文章主要介紹的是mysql 資料庫中如何將乙個實際應用表的相關資料插入到另外乙個表的實際操作方法,此方案看起來很簡單但是並非如此,雖然這個實現起來非常簡單,但是還是會困擾許多新手,因此專門發一篇文章備查。開發中,我們經常需要將乙個表的資料插入到另外乙個表,有時還需要指定匯入字段,雖然這個實現起...
Oracle一張表的多個字段更新到另一張表中去
假設表a中有多個字段 province city 需要從b表獲取 兩張表的mobile一樣 總結了幾種寫法。一 update a set a.province select province from b where b.mobile a.mobile update a set a.city sel...
根據一張表去更新另一張表
最近在改乙個專案,由於是別人做好的,很多資料表資訊不全。不得不手工用sql更新資料表。現在又這麼2張表 第一張是管理員表 id 使用者id c id 分公司id p id 部門id name 使用者名稱 第二張是訂單表 id 訂單id com id 訂單所屬銷售的公司id dep id 訂單所屬銷售...