mysql中distinct的用法 - 鲁仕林 - 博客园
2016年12月16日 - corresponds to your MySQLserver version for the right syntax to use near 'distinct(task_id) from task' atline 1现在把distinct放在开头...
MySQL中distinct和group by性能比较 - Zox - 博客园
2012年9月12日 - 01 mysql> set profiling=1; 02 mysql> select distinct(num) from test_test; 03 mysql> select num from test_test group by num; 04 mysql> show p...
数据库中 DISTINCT 的作用是什么?_百度知道
[专业]答案:SQL SELECT DISTINCT 语句 在表中,可能会包含重复值。这并不成问题,不过,有时您也许希望仅仅列出不同(distinct)的值。 关键词 DISTINCT 用于返回唯一不...更多关于mysql distinct的问题>>