MySQL 语法 - 添加主键。以下是什么意思?
我从 SQL 教程中得到了以下语法。它更新表以向列添加主键约束。
ALTER TABLE Persons
ADD CONSTRAINT pk_PersonID PRIMARY KEY (P_Id,LastName)
pk_PersonID 到底是什么?这只是一个标识符吗?这在整个数据库中必须是唯一的吗?
确实谢谢
I have the following syntax from an SQL tutorial. It updates a table to add a primary key constraint to a column.
ALTER TABLE Persons
ADD CONSTRAINT pk_PersonID PRIMARY KEY (P_Id,LastName)
What exactly is the pk_PersonID? Is this just an identifier? Must this unique right across the entire database?
Thanks indeed
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,它是约束的标识符,并且必须是唯一的。例如,如果您想稍后删除约束,您可以这样做
Yes, it's an identifier for the constraint and must be unique. For example, if you want to delete the constraint later you can do