create table Names (
FirstName varchar(40),
LastName varchar(40),
FullName AS FirstName+LastName
)
but now, in the full name i want that a space is inserted between first and last name, so i am altering the table but it gives syntax error. how to alter it.
alter table Names
alter column fullname as FirstName+' '+LastName