Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Recupero di utenti online tramite record di accesso e disconnessione

Qualcosa del genere:

select * from UserLog l1
where Operation = 'Enter' and 
      not exists(select * from UserLog l2 
                 where l1.user = l2.user and 
                       l2.Operation = 'Exit' and 
                       l2.Time > l1.Time)