MySQL Error 1293 - Incorrect table definition (TIMESTAMP)

1.首先我们来看下TIMESTAMP和DATETIME的相同与不同:

ref:http://database.51cto.com/art/200905/124240.htm

相同

显示

TIMESTAMP列的显示格式与DATETIME列相同。换句话说,显示宽度固定在19字符,并且格式为YYYY-MM-DD HH:MM:SS。

不同

范围

datetime 以'YYYY-MM-DD HH:MM:SS'格式检索和显示DATETIME值。支持的范围为'1000-01-01 00:00:00'到'9999-12-31 23:59:59'TIMESTAMP值不能早于1970或晚于2037

储存

TIMESTAMP

1.4个字节储存(Time stamp value is stored in 4 bytes)

2.值以UTC格式保存( it stores the number of milliseconds)

3.时区转化 ,存储时对当前的时区进行转换,检索时再转换回当前的时区。

datetime

1.8个字节储存(8 bytes storage)

2.实际格式储存(Just stores what you have stored and retrieves the same thing which you have stored.)

3.与时区无关(It has nothing to deal with the TIMEZONE and Conversion.)

实例对比

现在我来做个时区对他们的影响。

1.先插入一个数据insert into `t8` values(now(), now());

2.改变客户端时区(东9区,日本时区)。

3.再次显示插入的数据,变化了,timestamp类型的数据 增加了 1个小时

接下来 讨论一些timestamp 的其他的属性

1.null 是否为空

timestamp 默认允许为 “非空”(not null by default), 如果你在定义“ts TIMESTAMP DEFAULT NULL” 是非法的。 可以指定为空 null ,“ts TIMESTAMP NULL" ,这时可以在添加语句改变默认值。

ts2 TIMESTAMP NULL DEFAULT 0,
ts3 TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP 

default (一个表中只能有一个列选择下面其中一种)

default CURRENT_TIMESTAMP 

default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP

ON UPDATE CURRENT_TIMESTAMP

ON UPDATE 见上2

2.因此当我们遇到MySQL Error 1293 - Incorrect table definition (TIMESTAMP)问题时,应该知道是没有给timestamp字段赋予默认值。

例如:如果数据库语句如下会出现1293的问题:

create table users (
  id int unsigned auto_increment not null primary key,
  username varchar(50) not null unique,
  password varchar(40) not null,
  email_address varchar(128) not null unique,
  email_sent timestamp not null,
  last_login timestamp not null default now()
) ENGINE = InnoDB;
我们可以通过以下两种方式进行修改:
方法1:
create table users (
  id int unsigned auto_increment not null primary key,
  username varchar(50) not null unique,
  password varchar(40) not null,
  email_address varchar(128) not null unique,
  last_login timestamp not null default now(),
  email_sent timestamp not null
) ENGINE = InnoDB;
方法2:
create table users (
  id int unsigned auto_increment not null primary key,
  username varchar(50) not null unique,
  password varchar(40) not null,
  email_address varchar(128) not null unique,
  email_sent timestamp not null default 0,
  last_login timestamp not null default now()
) ENGINE = InnoDB;
ref:http://alvinalexander.com/mysql/mysql-error-1293-incorrect-table-definition-timestamp

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值