Musisz podać kolumnę z aliasem w zapytaniu wewnętrznym
SELECT COUNT( * )
FROM (
SELECT t.*
FROM `user` `t`
JOIN `user_relation` r ON ( t.user_id = r.follower_id
OR t.user_id = r.user_id )
WHERE r.status = "active"
AND (
r.user_id =125
OR r.follower_id =125
)
AND t.user_id !=125
GROUP BY t.username
)sq
Ponieważ jesteś zainteresowany count(*)
tylko ty możesz zwrócić albo t.*
lub r.*
lub dowolna jedna kolumna , pod warunkiem, że nazwy kolumn w zapytaniu wewnętrznym MUSZĄ być unikalne lub jeśli są takie same w obu tabelach niż poprzedzone nazwą aliasu tabeli.