首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

一个简单有关问题

2012-01-11 
一个简单问题select*fromt1wherenotexists(select1fromt2where字段 t1.字段)我想问一下这个语句是找到

一个简单问题
select   *   from   t1   where   not   exists(select   1   from   t2   where   字段 <> t1.字段)
我想问一下这个语句是找到相同的记录还是不相同的啊

[解决办法]
通常情况结果为空,除非t2只有1条记录或者t2中【字段】的值只有1中
[解决办法]
--找不相同的记录
select * from t1 where not exists(select 1 from t2 where 字段=t1.字段)

热点排行