我正在使用 MySQL
我创建的数据库是这样的:
Create table Author ( Id int , Name nvarchar(max) );
Create table Image ( Id int ,ImagePath nvarchar(max) );
Create table Blog ( Id int ,Name nvarchar(max) ,AuthorId int );
Create table BlogImages ( Id int ,BlogId int ,ImageId int );
现在,当我尝试以下部分时,我遇到了错误
ALTER TABLE Blog ADD FOREIGN KEY (AuthorId) REFERENCES Author(Id)
ALTER TABLE BlogImages ADD FOREIGN KEY (BlogId) REFERENCES Blog(Id)
ALTER TABLE BlogImages ADD FOREIGN KEY (ImageId) REFERENCES Image(Id)
请指导我需要在我的表中添加外键