I have "Order" table with more than 5,000 records. When I ran the update query unfortunately I forgot to give the ‘where’ condition. Now the Date column in all the records has been updated. Is it possible to retrieve my existing column values. Example:
Update Order
set ordered = getdate()
where Cusid=50
(here I forget to mention the where condition).