How to merge two fields or more to a field? we can use CONCAT eg. : first_name and last_name merge to 'Fullname' SELECT CONCAT (...
How to merge two fields or more to a field?
we can use CONCAT
eg. : first_name and last_name merge to 'Fullname'
SELECT CONCAT (first_name,last_name) as 'Fullname' from member
we can use CONCAT
eg. : first_name and last_name merge to 'Fullname'
SELECT CONCAT (first_name,last_name) as 'Fullname' from member