I have a data table with the following fields
EventID : Int, AutoIncrement, Primary Key
EventType : Int ' Defines what happened
EventTimeStamp : DateTime ' When the Event Happened
UserID : Int ' Unique
The request should tell me how many events happened with the new user IDs for each day in the entire set. So, for each day, how many events exist that have a UserID that does not exist on the previous day. I tried a lot, and I can get unique users per day, but I can’t figure out how to get “NEW” users per day.
source
share