I am trying to write a basic query that gives me FullName from the columns FirstName and LastName
Query:
select StudentID,
FirstName + ' ' + LastName as FullName
from Students
Now I am interested to see if there is a chance to add spaces between FirstNameand LastNamein the query when merging dynamic?
per say I need to have 50 spaces between FirstNameand LastName? Can i achieve this.
One solution would be to add spaces manually that are really looking for a way here.
source
share