Thank you for these replys.
I think the nearest that came to what I am after was:
SELECT DISTINCT CONVERT(datetime, CONVERT(char(8),LoginTime,112), 112) AS [date], [Application], [SystemUser]
FROM DW.ServerLogonHistory
ORDER BY CONVERT(datetime, CONVERT(char(8),LoginTime,112), 112)
which...