zoukankan      html  css  js  c++  java
  • 子查询和高效分页

    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

  • 相关阅读:
    子查询
    关联,分组练习
    共享锁(S锁)和排它锁(X锁)
    mac 搭建Vue开发环境
    移动端web开发
    负margin
    关于前端的margin
    清除的通用样式 css
    css布局
    <div class="clear"></div>
  • 原文地址:https://www.cnblogs.com/sumg/p/3649491.html
Copyright © 2011-2022 走看看