ALTER TABLE (SQL) 中不带参数的简单 MODIFY 会改变什么?

发布于 2024-12-22 21:13:26 字数 89 浏览 2 评论 0原文

alter table emp  
modify mgr;

之前的约束是否被删除/保留?
这有什么用呢?

alter table emp  
modify mgr;

Are previous constraints dropped/retained?
What is the use of this?

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

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

发布评论

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

评论(1

通知家属抬走 2024-12-29 21:13:26

来自文档

modify_col_properties

使用此子句可以修改列的属性。您从此子句中省略的列定义的任何可选部分(数据类型、默认值或约束)都保持不变。

因此,如果您不指定任何属性,则它是无操作的。它本身并不是很有用。

From the docs

modify_col_properties

Use this clause to modify the properties of the column. Any of the optional parts of the column definition (datatype, default value, or constraint) that you omit from this clause remain unchanged.

So it's a no-op if you don't specify any properties. It is not, in itself, very useful.

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