I was using +
operator in MySQL to add string values
select id, first_name + '' + last_name as full_name
from account;
Would it work? If not then what is the alternative?
I was using +
operator in MySQL to add string values
select id, first_name + '' + last_name as full_name
from account;
Would it work? If not then what is the alternative?