I have two string columns a and b in a table foo.
a
b
foo
select a, b from foo returns values a and b<
select a, b from foo
b<
Try this
select textcat(textcat(FirstName,' '),LastName) AS Name from person;