You can divide by the number of days - for example:SELECT COUNT(*)/COUNT(DISTINCT createDate) FROM dbo.Users
If the createDate column has time also, you would need to do this to extract only the date portion of it:SELECT COUNT(*)/COUNT(DISTINCT DATEADD(dd,DATEDIFF(dd,0,createDate),0)) FROM dbo.Users