本文介绍了在sqlserver表中获取行不是从其他表映射的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

一个是Demand表,另一个表是VarientCountry我只想要那些没有用VarientCountry表映射的记录



需求表

Id Varient Country
1 v1 India
2 v2 NULL
3 v3 Nepal
4 v4 Japan

VarientCountry Table

Id Varient国家
1 v1印度
2 v1 Uk
3 v2中国
4 v1 Indonisia
5 v3尼泊尔
6 v4 Egland
7 v4 Null

我想要的结果如

Id Varient Country
1 v1 UK
3 v2 China
6 v4英格兰





我的尝试:



一个是Demand表,另一个表是VarientCountry我只想要那些没有用VarientCountry表映射的记录



我希望例外的结果如

Id Varient Co untry
1 v1 UK
3 v2 China
6 v4 England
解决方案

One is Demand table and another table is VarientCountry i want only thoes records that are not map with VarientCountry table

Demand Table

Id Varient Country
1     v1       India
2     v2       NULL
3     v3       Nepal
4     v4       Japan

VarientCountry Table

Id Varient Country
1    v1       India
2    v1       Uk
3    v2       China
4    v1       Indonisia
5    v3       Nepal
6    v4       Egland
7    v4       Null

I want Excepted Result like as

Id Varient Country
1     v1       UK
3     v2       China
6     v4       England



What I have tried:

One is Demand table and another table is VarientCountry i want only thoes records that are not map with VarientCountry table

I want Excepted Result like as

Id Varient Country
1     v1       UK
3     v2       China
6     v4       England
解决方案


这篇关于在sqlserver表中获取行不是从其他表映射的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-13 06:11