私は次のような2つのテーブルを持っています
CREATE TABLE [dbo].[entry]
(
[id] [int] NULL,
[service] [int] NULL,
[sub] [int] NULL
)
値は、
id service sub
1 1 0
2 1 1
3 1 2
2番目の表は次のとおりです。
CREATE TABLE [dbo].[service]
(
[service] [int] NULL,
[sub] [int] NULL
)
その値は次のとおりです。
service sub
1 0
1 1
entry
テーブルには3行あり、テーブルservice
には2行あります。テーブルにはないがservice
テーブルにはある行が欲しいentry
ありがとう
ベンカット