do you know what createDate you need in the results set? or does it really matter?
you can use the following sql statement for most recent "createdate" and this will produce a results set with only one row per user id:
Select mytable.*
from mytable
where mytable.createdate = (select...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.