使用SQL语句为score表设置外键约束,外码是studentno,约束名是fk_constraint。
时间: 2024-02-17 18:04:46 浏览: 110
sql外键约束
可以使用以下SQL语句为score表设置外键约束:
```
ALTER TABLE score
ADD CONSTRAINT fk_constraint
FOREIGN KEY (studentno) REFERENCES student(studentno);
```
其中,fk_constraint是约束名,studentno是score表中的外键列名,student是外部表名,studentno是外部表中的主键列名。这条语句的作用是为score表的studentno列添加外键约束,确保它只能包含在student表的studentno列中存在的值。
阅读全文