I have thousands of records that were added today but at different hours of the day, The only way I'm able to see them is if I do ORDER BY ADDdate DESC
However, i need to make an update statement where I want to update a particulr field using WHERE clause with the date
The problem is, since they were all entered at different times, how am i able to CAST/CONVERT this field so that I can only do something like....
Basically every added record has a AddDate field in datetime format, i want it converted to mm/dd/yyyy format.
Update SpecialField
SET SpecialField = NULL
Where ADDdate = '09/18/2017'
Please help. Thanks.