This query will select a random date time in the past 60 days
select cast( cast(getdate() as int) -60 * rand ( cast( cast(newid() as binary(8)) as int ) ) as DATETIME )
This query will select a random date time in the past 60 days