Hi Tassos, I'm assuming you've stored it "firstname surname". If not, just reverse the destinations of the updatesUPDATE dbo.MyTableSET eponimo = RIGHT(RTRIM(eponimo), CHARINDEX(' ', REVERSE(RTRIM(eponimo)))-1), onoma = LEFT(eponimo, CHARINDEX(' ', eponimo)-1)Run this in a transaction followed by a select and a rollback to make sure you are happy with the results before committing. The RTRIM is required because of the datatypes. I'd advise changing these from CHAR to VARCHAR as the length of the entries will vary.Mark