distinct返回null报错_mysql中distinct
1.Distinct 位置单独的distinct只能放在开头,否则报错,语法错误,与其他函数使用时候,没有位置限制如下Select player_id,count(distinct(task_id))from task;这种情况下是正确的,可以使用。2.Distinct用法a.在count计算不重复的记录的时候能用到比如SELECT COUNT( DISTINCT player_id ) FROM...