zoukankan      html  css  js  c++  java
  • mysql 选出前五个元素

    mysql> select * from test;
    +----+----------+-------+-----------+
    | id | name     | score | subject   |
    +----+----------+-------+-----------+
    |  1 | xiaoming |    89 | shuxue    |
    |  2 | xiaohong |    89 | shuxue    |
    |  3 | xiaohong |    80 | english   |
    |  4 | xiaohong |    80 | physics   |
    |  5 | xiaohong |    80 | astronaut |
    |  6 | xiaoming |    80 | physics   |
    |  7 | xiaoming |    80 | astronaut |
    |  8 | xiaoming |    80 | english   |
    |  9 | xiaobai  |    80 | astronaut |
    | 10 | xiaobai  |    80 | english   |
    | 11 | xiaobai  |    80 | physics   |
    | 12 | xiaobai  |    80 | shuxue    |
    | 13 | xiaohei  |    80 | astronaut |
    | 14 | xiaohei  |    80 | shuxue    |
    | 15 | xiaohei  |    80 | physics   |
    | 16 | xiaohei  |    80 | english   |
    +----+----------+-------+-----------+
    16 rows in set (0.00 sec)
    
    
    mysql> select * from test where id between 1 and 5;
    +----+----------+-------+-----------+
    | id | name     | score | subject   |
    +----+----------+-------+-----------+
    |  1 | xiaoming |    89 | shuxue    |
    |  2 | xiaohong |    89 | shuxue    |
    |  3 | xiaohong |    80 | english   |
    |  4 | xiaohong |    80 | physics   |
    |  5 | xiaohong |    80 | astronaut |
    +----+----------+-------+-----------+
    5 rows in set (0.00 sec)
    
    
    mysql> select * from test where id <=5;
    +----+----------+-------+-----------+
    | id | name     | score | subject   |
    +----+----------+-------+-----------+
    |  1 | xiaoming |    89 | shuxue    |
    |  2 | xiaohong |    89 | shuxue    |
    |  3 | xiaohong |    80 | english   |
    |  4 | xiaohong |    80 | physics   |
    |  5 | xiaohong |    80 | astronaut |
    +----+----------+-------+-----------+
    5 rows in set (0.00 sec)
    
    
    mysql> select * from test where id in (1,2,3,4,5);
    +----+----------+-------+-----------+
    | id | name     | score | subject   |
    +----+----------+-------+-----------+
    |  1 | xiaoming |    89 | shuxue    |
    |  2 | xiaohong |    89 | shuxue    |
    |  3 | xiaohong |    80 | english   |
    |  4 | xiaohong |    80 | physics   |
    |  5 | xiaohong |    80 | astronaut |
    +----+----------+-------+-----------+
    5 rows in set (0.00 sec)

  • 相关阅读:
    SQL 行转列查询汇总
    c#中的委托是什么,事件是不是一种委托
    添加动画(两种)
    Follow 在地图中使地图和人物一起运动
    动作加速度Speed
    动作回调函数 (CallFunc,CallFuncN,CCCallFuncND)
    精灵沿着正方形路线运动暂停2秒后然后再将自己放大4倍
    CardinalSpline样条曲线(沿着正方形路线走)
    cocos2dx 3.2 Scale9Sprite点九图
    Label(标签)
  • 原文地址:https://www.cnblogs.com/sea-stream/p/11306549.html
Copyright © 2011-2022 走看看