I am performing a conversion analysis that only needs to look at activity up to the first conversion for each User_ID.
I can find the time of the first conversion for each user with this query:
select min([Time]), [User_ID]
from [Table_1]
where [Event_Type] = 2 --just a filter for conversions
group by [User_ID]
However, now I want to delete all data from [Table1] for each [User_ID], after their specific min([time]). How do I do this?
Any help is appreciated!