продукции в каждой таблице и сравнить их одним запросом?
CREATE TABLE production_accounting (
id int not null identity primary key,
date_created date not null,
customer_id int foreign key references customer(id),
product_id int foreign key references product(id),
amount_finished_products int not null
)
CREATE TABLE plans (
id int not null identity primary key,
date_created date not null,
customer int foreign key references Customer(id),
product int foreign key references Product(id),
count_product int not null
)
https://sqlize.online/sql/mssql2019/b529867c7d8b2e165b7b6e548b20336f/
Ок. Доберусь до компьютера, посмотрю
Обсуждают сегодня