Phpmyadmin - 我的代码不会创建表

时间:2013-03-18 17:29:34

标签: php mysql phpmyadmin

尝试使用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,或者如果我稍微编辑它会导致“ - ###”条目出现问题。

2 个答案:

答案 0 :(得分:1)

最后有一个随机逗号。

删除它。


此外,如果您将此作为一个查询集运行,那么每个部分后都需要;

答案 1 :(得分: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
);

create table in 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);

inserts in phpmyadmin