Продолжаю грызть гранит. Подскажите, как принудительно связать две таблицы Create Table Stock ( Period date not null , Product_ID INT not Null , Stock_Qty INT not null, Stock_Value decimal(10,3) not null, Primary Key (Period, Product_ID)); CREATE INDEX index_name ON Stock (Period, Product_ID); Create Table Sales ( Customer varchar(20) not Null , Product_ID Int Not Null , Period date not null , Sales decimal(10,3) not null, Qty INT not null, Primary Key (Customer, Product_ID,Period)); Alter Table Sales add Foreign key (Product_ID) references Stock (Product_ID), add Foreign key (Period)references Stock (Period); в итоге ошибка 1822
https://sqlize.online/s/jy
ух ты, вот это супер! Надо будет задонатить. А то начинают в некоторых чатах жизни учить)
Обсуждают сегодня