I've table and data as following,declare @t1 table(col1 varchar(30), col2 varchar(30))insert into @t1 values('my CAT looks sick','');insert into @t1 values('LION my favourite animal','');insert into @t1 values('please protect your cat','');insert into @t1 values('dont hurt your horse','');I need to move CAT word into col2 but I dont know how to do thatMy expected result will be@t1col1 | col2-------------------------------------my CAT looks sick | CATLION my favourite animal | please protect your cat | catdont hurt your horse |
need help