I have a table with 4 columns, say COLA,COLB,COLC,COLD. COLC and COLD are computed columns. Suppose I want to insert a row into table, should the query be something like
insert into Table (COLA,COLB,COLC,COLD) values (1,2,'','')?
I know I can't insert into computed columns. But how can I add a row and keep the default computed columns as they are?
Thanks for any advice!