This Query is the easiest way to know last players joined to your server
select BEBO2.CharName16 As 'Character Name', BEBO1.EventTime As 'Last Login Time'
from SRO_VT_SHARDLOG.._LogEventChar BEBO1 join SRO_VT_SHARD.._Char BEBO2
on BEBO1.CharID = BEBO2.CharID
where EventID = 4 order by EventTime Desc






