--> 测试数据:[student]
if object_id('[student]') is not null drop table [student]
create table [student]([sno] varchar(3),[sname] varchar(3),[age] int)
insert [student]
select '001','sb',10 union all
select '001','sb',15 union all
select '002','sb2',20 union all
select '002','sb2',30select * from student s where not exists(select 1 from student where s.sno=sno and age<s.age) /*
sno  sname age         
---- ----- ----------- 
001  sb    10
002  sb2   20(所影响的行数为 2 行)*/drop table student
select * from student s where not exists(select 1 from student where s.sno=sno and age<s.age) s.sno=sno and age<s.age 后面的子查询是什么意思的啊?越详细越好,,谢谢

解决方案 »

  1.   

    select * from student s where not exists(select 1 from student where s.sno=sno and age<s.age)student s 的年龄 和 子查询里的student age比较 大小
      

  2.   


    --按某一字段分组取最大(小)值所在行的数据
    --(爱新觉罗.毓华(十八年风雨,守得冰山雪莲花开) 2007-10-23于浙江杭州)
    /*
    数据如下:
    name val memo
    a    2   a2(a的第二个值)
    a    1   a1--a的第一个值
    a    3   a3:a的第三个值
    b    1   b1--b的第一个值
    b    3   b3:b的第三个值
    b    2   b2b2b2b2
    b    4   b4b4
    b    5   b5b5b5b5b5
    */
    --创建表并插入数据:
    create table tb(name varchar(10),val int,memo varchar(20))
    insert into tb values('a',    2,   'a2(a的第二个值)')
    insert into tb values('a',    1,   'a1--a的第一个值')
    insert into tb values('a',    3,   'a3:a的第三个值')
    insert into tb values('b',    1,   'b1--b的第一个值')
    insert into tb values('b',    3,   'b3:b的第三个值')
    insert into tb values('b',    2,   'b2b2b2b2')
    insert into tb values('b',    4,   'b4b4')
    insert into tb values('b',    5,   'b5b5b5b5b5')
    go--一、按name分组取val最大的值所在行的数据。
    --方法1:
    select a.* from tb a where val = (select max(val) from tb where name = a.name) order by a.name
    --方法2:
    select a.* from tb a where not exists(select 1 from tb where name = a.name and val > a.val)
    --方法3:
    select a.* from tb a,(select name,max(val) val from tb group by name) b where a.name = b.name and a.val = b.val order by a.name
    --方法4:
    select a.* from tb a inner join (select name , max(val) val from tb group by name) b on a.name = b.name and a.val = b.val order by a.name
    --方法5
    select a.* from tb a where 1 > (select count(*) from tb where name = a.name and val > a.val ) order by a.name
    /*
    name       val         memo                 
    ---------- ----------- -------------------- 
    a          3           a3:a的第三个值
    b          5           b5b5b5b5b5
    */--二、按name分组取val最小的值所在行的数据。
    --方法1:
    select a.* from tb a where val = (select min(val) from tb where name = a.name) order by a.name
    --方法2:
    select a.* from tb a where not exists(select 1 from tb where name = a.name and val < a.val)
    --方法3:
    select a.* from tb a,(select name,min(val) val from tb group by name) b where a.name = b.name and a.val = b.val order by a.name
    --方法4:
    select a.* from tb a inner join (select name , min(val) val from tb group by name) b on a.name = b.name and a.val = b.val order by a.name
    --方法5
    select a.* from tb a where 1 > (select count(*) from tb where name = a.name and val < a.val) order by a.name
    /*
    name       val         memo                 
    ---------- ----------- -------------------- 
    a          1           a1--a的第一个值
    b          1           b1--b的第一个值
    */--三、按name分组取第一次出现的行所在的数据。
    select a.* from tb a where val = (select top 1 val from tb where name = a.name) order by a.name
    /*
    name       val         memo                 
    ---------- ----------- -------------------- 
    a          2           a2(a的第二个值)
    b          1           b1--b的第一个值
    */--四、按name分组随机取一条数据。
    select a.* from tb a where val = (select top 1 val from tb where name = a.name order by newid()) order by a.name
    /*
    name       val         memo                 
    ---------- ----------- -------------------- 
    a          1           a1--a的第一个值
    b          5           b5b5b5b5b5
    */--五、按name分组取最小的两个(N个)val
    select a.* from tb a where 2 > (select count(*) from tb where name = a.name and val < a.val ) order by a.name,a.val
    select a.* from tb a where val in (select top 2 val from tb where name=a.name order by val) order by a.name,a.val
    select a.* from tb a where exists (select count(*) from tb where name = a.name and val < a.val having Count(*) < 2) order by a.name,a.val
    /*
    name       val         memo                 
    ---------- ----------- -------------------- 
    a          1           a1--a的第一个值
    a          2           a2(a的第二个值)
    b          1           b1--b的第一个值
    b          2           b2b2b2b2
    */--六、按name分组取最大的两个(N个)val
    select a.* from tb a where 2 > (select count(*) from tb where name = a.name and val > a.val ) order by a.name,a.val
    select a.* from tb a where val in (select top 2 val from tb where name=a.name order by val desc) order by a.name,a.val
    select a.* from tb a where exists (select count(*) from tb where name = a.name and val > a.val having Count(*) < 2) order by a.name , a.val
    /*
    name       val         memo                 
    ---------- ----------- -------------------- 
    a          2           a2(a的第二个值)
    a          3           a3:a的第三个值
    b          4           b4b4
    b          5           b5b5b5b5b5
    */
    --七,如果整行数据有重复,所有的列都相同。
    /*
    数据如下:
    name val memo
    a    2   a2(a的第二个值)
    a    1   a1--a的第一个值
    a    1   a1--a的第一个值
    a    3   a3:a的第三个值
    a    3   a3:a的第三个值
    b    1   b1--b的第一个值
    b    3   b3:b的第三个值
    b    2   b2b2b2b2
    b    4   b4b4
    b    5   b5b5b5b5b5
    */
    --在sql server 2000中只能用一个临时表来解决,生成一个自增列,先对val取最大或最小,然后再通过自增列来取数据。
    --创建表并插入数据:
    create table tb(name varchar(10),val int,memo varchar(20))
    insert into tb values('a',    2,   'a2(a的第二个值)')
    insert into tb values('a',    1,   'a1--a的第一个值')
    insert into tb values('a',    1,   'a1--a的第一个值')
    insert into tb values('a',    3,   'a3:a的第三个值')
    insert into tb values('a',    3,   'a3:a的第三个值')
    insert into tb values('b',    1,   'b1--b的第一个值')
    insert into tb values('b',    3,   'b3:b的第三个值')
    insert into tb values('b',    2,   'b2b2b2b2')
    insert into tb values('b',    4,   'b4b4')
    insert into tb values('b',    5,   'b5b5b5b5b5')
    goselect * , px = identity(int,1,1) into tmp from tbselect m.name,m.val,m.memo from
    (
      select t.* from tmp t where val = (select min(val) from tmp where name = t.name)
    ) m where px = (select min(px) from
    (
      select t.* from tmp t where val = (select min(val) from tmp where name = t.name)
    ) n where n.name = m.name)drop table tb,tmp/*
    name       val         memo
    ---------- ----------- --------------------
    a          1           a1--a的第一个值
    b          1           b1--b的第一个值(2 行受影响)
    */
    --在sql server 2005中可以使用row_number函数,不需要使用临时表。
    --创建表并插入数据:
    create table tb(name varchar(10),val int,memo varchar(20))
    insert into tb values('a',    2,   'a2(a的第二个值)')
    insert into tb values('a',    1,   'a1--a的第一个值')
    insert into tb values('a',    1,   'a1--a的第一个值')
    insert into tb values('a',    3,   'a3:a的第三个值')
    insert into tb values('a',    3,   'a3:a的第三个值')
    insert into tb values('b',    1,   'b1--b的第一个值')
    insert into tb values('b',    3,   'b3:b的第三个值')
    insert into tb values('b',    2,   'b2b2b2b2')
    insert into tb values('b',    4,   'b4b4')
    insert into tb values('b',    5,   'b5b5b5b5b5')
    goselect m.name,m.val,m.memo from
    (
      select * , px = row_number() over(order by name , val) from tb
    ) m where px = (select min(px) from
    (
      select * , px = row_number() over(order by name , val) from tb
    ) n where n.name = m.name)drop table tb/*
    name       val         memo
    ---------- ----------- --------------------
    a          1           a1--a的第一个值
    b          1           b1--b的第一个值(2 行受影响)
    */
      

  3.   

    意思是不存在比当前age还小的记录,则这个age为最小的age.如果是你刚才那个帖,求第一条记录,这个写法不对.应该是:select t.* from student t where age = (select top 1 age from student where sno = t.sno and sname = t.sname) order by t.sno , t.sname
      

  4.   

    如果不能通过age,或者说不能通过除sno,sname 之外的任何一个字段来获取数据,则只能用临时表了.
    create table [student]([sno] varchar(3),[sname] varchar(3),[age] int)
    insert [student]
    select '001','sb',10 union all
    select '001','sb',15 union all
    select '002','sb2',20 union all
    select '002','sb2',30select * , id = identity(int,1,1) into tmp from studentselect t.sno , t.sname , t.age from tmp t where id = (select top 1 id from tmp where sno = t.sno and sname = t.sname) order by t.sno , t.snamedrop table student , tmp /*
    sno  sname age         
    ---- ----- ----------- 
    001  sb    10
    002  sb2   20(所影响的行数为 2 行)*/
      

  5.   

    你吧student s,和自查询里的student 当成是两个表就好理解了
    比如说 s.sno=001 s.age=15 子查询里的 s.sno=student.sno and student.age <s.age的记录存在一个student.age=10的 not exist 就返回false
    where里返回false select里就查不到这条记录相应的 s.age=10的 没有student.age <s.age的记录 加个not后 not exist返回true
    select就能查到这条记录 
      

  6.   

    你就这样理解好了。。
    从student取1条记录回来, 然后子查询就拿这条记录去找看看还有没有更小的, 有的话, 返回TRUE, 但是由于是NOT EXISTS, 就有个否定的过程。。所以变FALSE了,说明就不返回这条记录, 继续往下取合适的记录靠。。好难解释。。
      

  7.   

    exists是返回的BOOL值 只要存在就成立  
    而你的子查询查询出来的值存在的话就与前面表查询出来的对比 存在满足条件的话 就查询出来 否则就不能查询出来 
    not exists与exists相反
      

  8.   


    EXISTS和NOT EXISTS 如果一个子查询返回任何的行,则EXISTS subquery为FALSE。例如: 
    SELECT column1 FROM t1 WHERE EXISTS (SELECT * FROM t2);
    过去,EXISTS子查询以SELECT *为开始,但是可以以SELECT 5或SELECT column1或其它的为开始。MySQL在这类子查询中忽略了SELECT清单,因此没有区别。对于前面的例子,如果t2包含任何行,即使是只含有NULL值的行,EXISTS条件也为TRUE。这实际上是一个不可能的例子,因为基本上所有的[NOT] EXISTS子查询均包含关联。以下是一些更现实的例子:·         哪些种类的商店出现在一个或多个城市里?·                  SELECT DISTINCT store_type FROM stores
    ·                      WHERE EXISTS (SELECT * FROM cities_stores
    ·                                    WHERE cities_stores.store_type = stores.store_type);
    ·         哪些种类的商店没有出现在任何城市里?·                  SELECT DISTINCT store_type FROM stores
    ·                      WHERE NOT EXISTS (SELECT * FROM cities_stores
    ·                                        WHERE cities_stores.store_type = stores.store_type);
    ·         哪些种类的商店出现在所有城市里?·                  SELECT DISTINCT store_type FROM stores s1
    ·                      WHERE NOT EXISTS (
    ·                        SELECT * FROM cities WHERE NOT EXISTS (
    ·                          SELECT * FROM cities_stores
    ·                           WHERE cities_stores.city = cities.city
    ·                           AND cities_stores.store_type = stores.store_type));
    最后一个例子是一个双嵌套NOT EXISTS查询。也就是,该查询包含一个NOT EXISTS子句,该子句又包含在一个NOT EXISTS子句中。该查询正式地回答了这个问题,“是否有某个城市拥有没有列在Stores中的商店?”。可以比较容易的说,一个带嵌套的NOT EXISTS可以回答这样的问题,“是否对于所有的y,x都为TRUE?”