I have the following SQL statement:
Select email_address = (client_email + Client_email_domain)
FROM client_contact
Neither of the colulns contain "@" therefore I need to add in the @ in the results...
(client_email + "@"+ Client_email_domain)
Can this be done?
Thanks