Subject group by or distinct
Author kaczy27
hello,

what is faster in such case:

select
field1, field2, field3
from
table1
group by
field1, field2, field3;

or

select distinct
field1, field2, field3
from
table1;

CUIN Kaczy