MySQL查询结果中去掉重复的值
一个简单的应用,查询数据库中的用户名,同时去掉其他重名的用户。测试数据库如下:
mysql> select name from demo;
+———+
| name |
+———+
| yxh |
| yxh |
| default |
+———+
查询时,只要限定关键词‘distinct’即可,例如:
mysql> select distinct name from demo where name != ‘default’;
+——+
| name |
+——+
| yxh |
+——+
1 row in set (0.02 sec)