I don't think this is a good use for a computed column (I prefer to do this sort of string concatentation directly in my queries)... But yes, if that's what you really want, you can have a column that combines first and last name into a single field like this: CREATE TABLE mytable (f_name varchar(50), l_name varchar(50), calcd_full_name as isnull(f_name, '')+' '+isnull(l_name, ''))
Edited by - izaltsman on 02/05/2002 10:04:36