Hi all,
Got a bunch of date data in the wrong column, I'd like copied into a column on the same table. Here's as far as I've got:
Update dbo.ReadingList
--SELECT convert (Datetime, RIGHT(Title, 9))
Set Date
SELECT RIGHT(Title, 10)
From Rea
↧