swampboogie, you gave me the following code for my question and I greatly appreciate but it is not moving the lastname and firstname into the fullname field if instname is blank. What could be causing this?? I take it that the || are a plus sign(+)??
create view x as
select coalesce(instname,lastname||', '||firstname) as fullname
from tableInAWarehouse
create view x as
select coalesce(instname,lastname||', '||firstname) as fullname
from tableInAWarehouse