私は2つのテーブルを持っています:
create table Clients
(
id_client int not null identity(1,1) Primary Key,
name_client varchar(10) not null,
phone_client int not null
)
create table Sales
(
id_sale int not null identity(1,1) Primary Key,
date_sale date not null,
total_sale float not null
id_clients int not null identity(1,1) Foreign Key references Clients
)
それでは、Clients ('Ralph', 00000000) に挿入してみましょう。id_client は (明らかに) 1 になります。問題は、その 1 を Sales に挿入するにはどうすればよいかということです。