Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
SELECT concat(customers_firstname, ' ', customers_lastname) as customers_fullname FROM `customers`;
UPDATE `customers` SET customers_fullname = CONCAT(customers_firstname, " ", customers_lastname);