`
luolonghao
  • 浏览: 120083 次
  • 性别: Icon_minigender_1
  • 来自: Shanghai
社区版块
存档分类
最新评论

mysql text, timestamp datatype 相关笔记

阅读更多
1. create table时,blob, text类型不能有default value。
以下SQL会报警告。
create table ( a text not null default '');


2. 第一个字段为timestamp not null时,default值为current_timestamp。第二个字段开始 default为0。

3. 一个表里只能用一个default current_timestamp, on update current_timestamp。
以下SQL会报错。
create table ( a timestamp not null, b timestamp not null default current_timestamp);


分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics