DISTINCT
with parenthesis SQL-L015Parenthesis are not needed and confuse DISTINCT
with a function.
The parethesis can also be misleading in which columns they apply to.
SELECT DISTINCT(a), b FROM foo
Remove parenthesis to be clear that the DISTINCT applies to both columns.
SELECT DISTINCT a, b FROM foo