SQL Server computed two columns in one column.



you can add the full_name column to the person's table by using the ALTER TABLE ADD column as follows

ALTER TABLE tbl_user
ADD fullName AS (fname + ' ' + lname);

0 Comment's

Comment Form

Submit Comment