Without any definite proof I've been preferring to use the following to get a distinct list of x
:
SELECT x
FROM tb_containRepeatedX
GROUP BY x
As opposed to
SELECT DISTINCT x
FROM tb_containRepeatedX
Is this the correct strategy?
Without any definite proof I've been preferring to use the following to get a distinct list of x
:
SELECT x
FROM tb_containRepeatedX
GROUP BY x
As opposed to
SELECT DISTINCT x
FROM tb_containRepeatedX
Is this the correct strategy?