To concatenate two string type columns separated by space, we can use space function.
SELECT FirstName + SPACE(1) + LastName FROM PersonalDetails
Notice the SPACE(1)
function in between FirstName and LastName. As the parameter value passed in SPACE
function is 1 so there will be one blank space in between FirstName and LastName column values.