We recently had a company that is in our database change their email schema. I am trying to do this through SQL so that I do not have to do all 200+ by hand. I need the domain to change, as well as making it lastname.firstname@newdomain.com
So what you have is: - the part '@newdomain.com' - a column with lastname - a column with firstname then you can create that new mailaddress by concatenating the parts. EMAIL=lastname+'.'+firstname+'@newdomain.com'
No, you're never too old to Yak'n'Roll if you're too young to die.