美文网首页
sql 技巧

sql 技巧

作者: 西门吹牛々 | 来源:发表于2018-06-04 12:43 被阅读7次
    • distinct在一种情况下比group by快很多:
      例:select distinct(num) from test_test;
      如果在表中num值的种类很少,比如num只有1,2,3三种值,并且表中有10w条数据,此时distinct比group by快很多。

    而如果num值的种类很多时,有上千种,那么groupby就比distinct快很多。

    相关文章

      网友评论

          本文标题:sql 技巧

          本文链接:https://www.haomeiwen.com/subject/hhukbxtx.html