zoukankan      html  css  js  c++  java
  • SQL中distinct的用法

    在表中,可能会包含重复值。这并不成问题,不过,有时您也许希望仅仅列出不同(distinct)的值。关键词 distinct用于返回唯一不同的值。

    表A:

    示例1

    select distinct name from A

    执行后结果如下:

    示例2

    select distinct name, id from A

    执行后结果如下:

    实际上是根据“name+id”来去重,distinct同时作用在了name和id上,这种方式Access和SQL Server同时支持。

    示例3:统计

    select count(distinct name) from A;	  --表中name去重后的数目, SQL Server支持,而Access不支持
    select count(distinct name, id) from A;	  --SQL Server和Access都不支持

    示例4

    select id, distinct name from A;   --会提示错误,因为distinct必须放在开头

    其他

    distinct语句中select显示的字段只能是distinct指定的字段,其他字段是不可能出现的。例如,假如表A有“备注”列,如果想获取distinc name,以及对应的“备注”字段,想直接通过distinct是不可能实现的。

  • 相关阅读:
    Mac ssh登陆linux并且显示linux图形
    github proxy
    [makefile] filter-out
    linux svn
    界面UI测试的方法
    UI测试
    web 页面中 四种常见 必测控件
    面试工作经验参考
    测试用例
    接口测试基础
  • 原文地址:https://www.cnblogs.com/koal/p/4526633.html
Copyright © 2011-2022 走看看