zoukankan      html  css  js  c++  java
  • mysql group by 组内排序 group by 原理

    mysql group by 组内排序

     

    SELECT * FROM (
    SELECT MAX(id) AS t,wukong_uid, 1 AS tag FROM  toutiao_uid_gathered_wukong GROUP BY wukong_uid
    UNION ALL
    SELECT id AS t ,wukong_uid, 2 AS tag FROM toutiao_uid_gathered_wukong
    ) AS tab ORDER BY wukong_uid ASC , t ASC ;

    验证group by原理 是否来源同一行数据

    SELECT * FROM (
    SELECT MAX(id) AS t,wukong_uid, 1 AS tag,time_script FROM xmt_star_helper_toutiao_uid_gathered_wukong GROUP BY wukong_uid
    UNION ALL
    SELECT id AS t ,wukong_uid, 2 AS tag,time_script FROM xmt_star_helper_toutiao_uid_gathered_wukong
    ) AS tab ORDER BY wukong_uid ASC , t ASC ;

    5914 10301285240 2 1516248413
    6563 10301285240 2 1516264338
    6767 10301285240 2 1516264338
    7774 10301285240 2 1516264338
    7774 10301285240 1 1516193381
    376 10499564112 2 1516193381
    4565 10499564112 2 1516248413
    5019 10499564112 2 1516248413
    5534 10499564112 2 1516248413
    6425 10499564112 2 1516264338
    6879 10499564112 2 1516264338
    7394 10499564112 2 1516264338
    7977 10499564112 2 1516264338
    7977 10499564112 1 1516193381
    360 10818489841 2 1516193381
    360 10818489841 1 1516193381

  • 相关阅读:
    mysql面试知识点
    计算机网络
    BFS
    拓扑排序
    双指针
    回溯算法
    hash表 算法模板和相关题目
    桶排序及其应用
    滑动窗口
    贪心算法
  • 原文地址:https://www.cnblogs.com/rsapaper/p/8311048.html
Copyright © 2011-2022 走看看