错误1064(42000)难倒在我的创建表上

时间:2016-08-23 21:47:30

标签: mysql

create table chgtaxes
  (
    po_no char(8) not null,
    change smallint not null,
    line_no smallint not null,
    stax_rate decimal(6,5) not null,
    utax_rate decimal(6,5) not null 
  );

create unique index chgtax_1 on chgtaxes (po_no, change, line_no);

我不确定我的问题在这个陈述中的位置。它似乎突然出现在其他一些桌子上,我觉得问题是相关的。请帮忙!

编辑:

以下是实际错误:

enter image description here

1 个答案:

答案 0 :(得分:0)

发现上次构建数据库时保留字数存在明显差异。能够解决我的问题。