CONCAT
edit
Concatenates two or more strings.
FROM employees | KEEP first_name, last_name, height | EVAL fullname = CONCAT(first_name, " ", last_name)
CONCAT
editConcatenates two or more strings.
FROM employees | KEEP first_name, last_name, height | EVAL fullname = CONCAT(first_name, " ", last_name)