我有两张桌子,
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
第二张表是:
CREATE TABLE [dbo].[service]
(
[service] [int] NULL,
[sub] [int] NULL
)
其值为:
service sub
1 0
1 1
entry
表中有 3 行,表service
中有 2 行。我想要不在service
表中但在entry
表中的行
谢谢
文卡特