Yes you can. Try something like this:
SELECT a.ID, CONCAT(a.name,' ',b.surname) AS FULL_Name
FROM table_a a JOIN table_b b
ON a.ID = b.ID
Yes you can. Try something like this:
SELECT a.ID, CONCAT(a.name,' ',b.surname) AS FULL_Name
FROM table_a a JOIN table_b b
ON a.ID = b.ID