如何向 MySQL 中的现有列添加非空约束

发布于 2024-11-15 02:39:25 字数 406 浏览 2 评论 0原文

我有一个名为“Person”的表名称,其列名称如下,

P_Id(int),
LastName(varchar),
FirstName (varchar).

我忘记给 P_Id 提供 NOT NULL 约束。

现在我尝试使用以下查询将 NOT NULL 约束添加到名为 P_Id 的现有列,

1. ALTER TABLE  Person MODIFY  (P_Id NOT  NULL);
2. ALTER TABLE Person ADD CONSTRAINT NOT  NULL NOT NULL (P_Id);

我收到语法错误......

I have table name called "Person" with following column names

P_Id(int),
LastName(varchar),
FirstName (varchar).

I forgot to give NOT NULL Constraint to P_Id.

Now I tried with following query to add NOT NULL Constraint to existing column called P_Id,

1. ALTER TABLE  Person MODIFY  (P_Id NOT  NULL);
2. ALTER TABLE Person ADD CONSTRAINT NOT  NULL NOT NULL (P_Id);

I am getting syntax error....

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

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

发布评论

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

评论(3

不语却知心 2024-11-22 02:39:25

只需使用 ALTER TABLE... MODIFY... 查询并将 NOT NULL 添加到现有的列定义中。例如:

ALTER TABLE Person MODIFY P_Id INT(11) NOT NULL;

请注意:使用 MODIFY 查询时,您需要再次指定完整列定义。例如,如果您的列具有 DEFAULT 值或列注释,则需要在 MODIFY 语句中指定它以及数据类型和 NOT NULL,否则会丢失。防止此类事故的最安全做法是从 SHOW CREATE TABLE YourTable 查询的输出中复制列定义,修改它以包含 NOT NULL 约束,然后粘贴将其放入您的 ALTER TABLE...MODIFY... 查询中。

Just use an ALTER TABLE... MODIFY... query and add NOT NULL into your existing column definition. For example:

ALTER TABLE Person MODIFY P_Id INT(11) NOT NULL;

A word of caution: you need to specify the full column definition again when using a MODIFY query. If your column has, for example, a DEFAULT value, or a column comment, you need to specify it in the MODIFY statement along with the data type and the NOT NULL, or it will be lost. The safest practice to guard against such mishaps is to copy the column definition from the output of a SHOW CREATE TABLE YourTable query, modify it to include the NOT NULL constraint, and paste it into your ALTER TABLE... MODIFY... query.

姜生凉生 2024-11-22 02:39:25

尝试一下,您就会知道更改和修改之间的区别,

ALTER TABLE table_name CHANGE curr_column_name new_column_name new_column_datatype [constraints]

ALTER TABLE table_name MODIFY column_name new_column_datatype [constraints]
  • 您可以使用 CHANGE 更改特定列的名称和数据类型。
  • 您可以使用 MODIFY 修改特定列的数据类型。您不能使用此语句更改列的名称。

希望,我解释得很详细。

Try this, you will know the difference between change and modify,

ALTER TABLE table_name CHANGE curr_column_name new_column_name new_column_datatype [constraints]

ALTER TABLE table_name MODIFY column_name new_column_datatype [constraints]
  • You can change name and datatype of the particular column using CHANGE.
  • You can modify the particular column datatype using MODIFY. You cannot change the name of the column using this statement.

Hope, I explained well in detail.

香橙ぽ 2024-11-22 02:39:25

想要添加:

更新后,例如

ALTER TABLE table_name modify column_name tinyint(4) NOT NULL;

如果您得到

ERROR 1138 (22004): Invalid use of NULL value

确保首先更新表以在相关列中包含值(因此它不为空)

Would like to add:

After update, such as

ALTER TABLE table_name modify column_name tinyint(4) NOT NULL;

If you get

ERROR 1138 (22004): Invalid use of NULL value

Make sure you update the table first to have values in the related column (so it's not null)

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