欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

mysql数据库的查询去重函数是DISTINCT

程序员文章站 2024-02-11 11:49:16
...

参考链接:

        https://jingyan.baidu.com/article/64d05a0214cba1de55f73bf1.html

  一、去掉查询结果中重复的内容

SELECT DISTINCT planeNumber from planeinfo ORDER BY planeNumber

  二、读取表中不重复的数据

SELECT planeModel, planeNumber from planeinfo
GROUP BY planeModel, planeNumber