@Query(value="select g.steam_id from Gametime g where g.account_id = :account_id and g.connect_ip not like '' and g.connect_ip not like '10.%' group by g.connect_ip, g.steam_id, g.id order by g.id desc")
@Query(value="select g.steam_id from Gametime g where g.connect_ip in (select gg.connect_ip from Gametime gg where gg.account_id = :account_id and gg.connect_ip not like '10.%' group by gg.connect_ip, gg.id order by gg.id) group by g.steam_id")