If a correlated subquery is not supported, let's hope a join (and a group by) is?
Could you try this one:
Code:
select a.id, a.user, a.fname, a.lname
from logins as a, logins as b
where a.user = b.user
and a.id <= b.id
group by a.id, a.user, a.fname, a.lname
having count(*) = 1