Dear all, Does the code1 below have a better efficiency than code2? Thanks! -------------------------------------------- CODE1: select distinct a,b,c from table1 CODE2: select a,b,c from table1 group by a,b,c
- Question about efficiency of SELECT DISTINCT 孙志禹