0

尝试使用 PhpMyadmin 创建表时,我不断收到语法错误。

我做错了什么?

CREATE TABLE `cust`
(
    `cust5_id` Integer auto_increment primary key,
    `prog_id` Integer not null,
    `cust_no` Integer null,
    `balance` Integer  - accept negative and positive numbers
)


INSERT INTO `cust`
(`cust5_id`,`prog_id`,`cust_no`,`balance`)
VALUES
(1,217770,145094,-178.01),
(2,219885,145113,-390.86),
(3,219888,145164,-206.55),
(4,226227,145279,0),
(5,227700,145340,0),
(6,219911,145344,0),
(7,227795,145410,-44.1),
(8,227796,145472,0),
(9,219919,145481,0),
(10,225616,145604,0),
(11,219942,145668,0),
(12,219943,145682,0),
(13,219966,145694,0),
(14,219973,145731,-210.6),
(15,219977,145782,0)

编辑:更改:

最后去掉逗号,没有区别。

错误代码总是#1064,或者如果我稍微编辑它,“-###”条目就会出现问题。

4

2 回答 2

1

最后有一个随机逗号。

去掉它。


此外,如果您将其作为一个查询集运行,那么您需要;在每个部分之后添加一个。

于 2013-03-18T17:31:49.293 回答
1

您的评论需要两个尾随连字符:

CREATE TABLE `cust`
(
    `cust5_id` Integer auto_increment primary key,
    `prog_id` Integer not null,
    `cust_no` Integer null,
    `balance` Integer  -- accept negative and positive numbers
);

在 phpmyadmin 中创建表

并且您需要在插入末尾使用分号而不是逗号:

INSERT INTO `cust`
(`cust5_id`,`prog_id`,`cust_no`,`balance`)
VALUES
(1,217770,145094,-178.01),
(2,219885,145113,-390.86),
(3,219888,145164,-206.55),
(4,226227,145279,0),
(5,227700,145340,0),
(6,219911,145344,0),
(7,227795,145410,-44.1),
(8,227796,145472,0),
(9,219919,145481,0),
(10,225616,145604,0),
(11,219942,145668,0),
(12,219943,145682,0),
(13,219966,145694,0),
(14,219973,145731,-210.6),
(15,219977,145782,0);

在 phpmyadmin 中插入

于 2013-03-18T17:34:14.643 回答