将列插入表的语法

发布于 2024-12-08 22:31:20 字数 543 浏览 0 评论 0原文

是否可以向 MySQL 表中插入列?

我创建了一个表并将其命名为“my_table” - 我不明白,为什么 MySQL 不接受我的语法...

INSERT INTO "my_table"(
    "item" char(1) NOT NULL DEFAULT '',
    "price" int(10) NOT NULL DEFAULT '3000',
    "level" int(10) NOT NULL DEFAULT '1000',
    "super" char(1) NOT NULL DEFAULT '',
    "play" char(1) NOT NULL DEFAULT ''
)

错误消息:

1064 - 您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,了解在第 1 行 '"my_table"( "item" char(1) NOT NULL DEFAULT '', "price" i' 附近使用的正确语法

那么我的语法有什么问题吗?

Is it possible to insert columns into a MySQL table??

I've created a table and named it "my_table" - I do not understand, why MySQL does not eats my syntax...

INSERT INTO "my_table"(
    "item" char(1) NOT NULL DEFAULT '',
    "price" int(10) NOT NULL DEFAULT '3000',
    "level" int(10) NOT NULL DEFAULT '1000',
    "super" char(1) NOT NULL DEFAULT '',
    "play" char(1) NOT NULL DEFAULT ''
)

Error message:

1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '"my_table"( "item" char(1) NOT NULL DEFAULT '', "price" i' at line 1

So what's wrong with my syntax ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情绪少女 2024-12-15 22:31:20

如果您尝试向已创建的表添加列,则必须使用 ALTER。

ALTER TABLE my_table ADD item char(1) NOT NULL DEFAULT '';

http://dev.mysql.com/doc/refman/5.1 /en/alter-table.html
http://www.techiecorner.com/560/mysql-how-to-add-column-to-existing-table/

If you're trying to add columns to an already created table you must use ALTER.

ALTER TABLE my_table ADD item char(1) NOT NULL DEFAULT '';

http://dev.mysql.com/doc/refman/5.1/en/alter-table.html
http://www.techiecorner.com/560/mysql-how-to-add-column-to-existing-table/

赏烟花じ飞满天 2024-12-15 22:31:20

正如文档说得很清楚, INSERT 用于插入数据行,而不是更改架构。

请查看 ALTER

表/字段名称用反引号分隔,而不是引号。

As the documentation says quite clearly, INSERT is for inserting rows of data, not altering the schema.

Look at ALTER instead.

And table/field names are delimited with backticks, not quotation marks.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文