SELECT DISTINCT `memberID` FROM `discusComments` WHERE `topicID` = 4 ORDER BY `id` DESC limit 1,x
where x is a number sufficient to hold all of your records.
or use 18446744073709551615 instead of x, that is, the maximum unsigned bigint value.
source share