I have SELECT DISTINCT (first),second,third FROM table
And I want not only the first to be DISTINCT, and the second to DISTINCT, and the third to be left without DISTINCT, I tried like this.
SELECT DISTINCT (first,second),third FROM table
And a couple more things, but it didn’t work.
source share