我使用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)
請指導 我需要將外鍵添加到我的表中