• 子查询和高效分页


    select id from Classes where Name ='一期'
    select* from Students where CId =(select id from Classes where Name ='一期')--子查询
    select * from Students where CId in (select id from Classes where Name ='一期'

    select * from Students where CId not in (select Id from Classes where Name ='一期')

    select * from Students where exists (select * from Classes where Classes.Id=Students .CId) --主查询会根绝子查询的条件进行匹配

    select * from Students where not exists (select * from Classes where Classes.Id=Students .CId)

    --第一种分页方式,如果要取很多页之后的数据性能比较低
    select top 10 * from Students where Id in (select top 10 Id from Students )--查出前十条数据

    select top 10 * from Students where Id not in (select top 10 Id from Students )--查出第二页数据
    --第二种分页比较高效,Row_Number()方法会给结果集编号
    select * from (
    select *,ROW_NUMBER()over(order by id) as rowsnumber from Students ) as t
    where t.rowsnumber between 1 and 10

  • 相关阅读:
    2016.7.31整机升级计划
    UVa 1588
    UVa1587
    Jzoj4714 公约数
    Jzoj4714 公约数
    Jzoj4713 A
    Jzoj4713 A
    Jzoj4711 Binary
    Jzoj4711 Binary
    Jzoj4710 Value
  • 原文地址:https://www.cnblogs.com/sumg/p/3649491.html
Copyright © 2020-2023  润新知