zoukankan      html  css  js  c++  java
  • 数据库中的数据排序

    升序

    按照cust_id升序(默认升序),找出cust_id和cust_name。

    SELECT cust_id, cust_name 
    FROM boot_crm.customer
    order by cust_id;
    

    在这里插入图片描述

    指定升序或者降序:

    默认是升序。asc表示升序,desc表示降序。
    例:

    SELECT cust_id, cust_name 
    FROM boot_crm.customer
    order by cust_id asc;
    

    在这里插入图片描述

    SELECT cust_id, cust_name 
    FROM boot_crm.customer
    order by cust_id desc;
    

    在这里插入图片描述

    联用升序和降序

    按照dict_type_code升序排列,dict_type_code相同的的情况下再按照dict_id降序排列:

    SELECT * FROM boot_crm.base_dict
    order by dict_type_code asc,
    dict_id desc;
    

    在这里插入图片描述
    越靠前的字段越能起到主导作用。
    只有当前面的字段无法完成排序的时候,才会启用后面的字段。

    利用数字替代
    SELECT * FROM boot_crm.base_dict
    order by 1;
    

    等同于:

    SELECT * FROM boot_crm.base_dict
    order by dict_id;
    

    在这里插入图片描述
    dict_type_code对应2;dict_type_name对应3...(但不建议写死)。

    完整的DQL语句

    SELECT ...---5
    FROM ...---1
    WHERE...---2
    group by...---3
    having...---4
    order by ...;---6

  • 相关阅读:
    GPU
    Windows系统之hosts文件
    条形码定位算法
    entity framework extended library , bulk execute,deleting and updating ,opensource
    sharepoint 2013 sp1
    windows azure programing
    windows azure tools for mac
    online web design tool
    toastr
    sharepoint online
  • 原文地址:https://www.cnblogs.com/yu011/p/13254249.html
Copyright © 2011-2022 走看看