Hi,I have 190 records where i want to pull the company name from other records in this table in to the company field for these records where field unqiueid =user8.Below is a select query that gives me the reults i want i just need to copy data from entity.company to list.company, i just don't know how :-) Anyone got any ideas?Thanks for any help.SELECT entity.uniqueid, list.user8,entity.company, list.company,entity.contact,list.contactFROM wce_contact AS entity LEFT OUTER JOIN wce_contact AS listON entity.uniqueid = list.user8 where list.user9 = 'scw'