Mysql
 sql >> Database >  >> RDS >> Mysql

Query MySQL:trova nuovi utenti al giorno

Select count(EventId) from table
where 
UserId 
  not in (select UserId from table where EventTimeStamp < now() - interval 1 day)