My suggestion is to add a calculated column to your table for full_name calculated column examples:
--drop table
As you can see, you may have to play a bit until you get the results you need. First, do this in the temporary table to avoid having to restructure the database table several times. For names, especially if you use a middle name that is often empty, you may need to add code to handle zeros. You may also need to sometimes use the code to include in the same data type if one of you filed for concatenation, for example, int, and the other - varchar.
Hlgem source share