码迷,mamicode.com
首页 > 数据库 > 详细

oracle 、server和my sql 语法区别

时间:2017-06-07 16:21:09      阅读:357      评论:0      收藏:0      [点我收藏+]

标签:UI   div   rom   scp   follow   cli   acl   _id   order by   

1.总结Oracle 、sqlserver和mysql中查询10-20条记录的写法

     一: oracle数据库写法:

    1:select * from (select rownum rn ,* from 表名 wher rownum<20) a

    where a.rn>10

    2:select * from 表名 where rownum<20

      minus

      select * from 表名 where rownum<10

      二:SqlServer数据库写法:

      1:select top 20 * from tablename where id not?exists (select top 10 * from tablename)//前20条记录再过滤掉前10条

      2:select top10 * from (select top 20 * from order by column) order by column desc//子查询中取20条倒序,然后从子查询中取前10条

      三:mysql的写法:

      select * from tablename where LIMIT 9,10

 

oracle 、server和my sql 语法区别

标签:UI   div   rom   scp   follow   cli   acl   _id   order by   

原文地址:http://www.cnblogs.com/fengyiru6369/p/6957578.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!