running: db2 luw 9.7
I have a general query on the setup of a column...
I have 3 columns (all varchar):
Type Model Description
Type and model are required, I would like Description not to be required, but by default be filled with Type concat Model, so, if I filled with
"9406" "520" "This is a 9406 model 520"
that would work..
but if I filled with
"9406" "520" it would fill the description with 9406520 automatically.
Is that possible? I can put a formula in, but then the DDL shows "GENERATED ALWAYS AS.....". I don't want it generated always.
Thanks in advance