given, if I have a table as follows:
create table test (
fieldA date not null,
fieldB char (6) not null,
fieldC char (30) not null,
fieldD char (10) not null,
constraint pk_test primary key (fieldA, fieldB))
How can I write a update procedure where the update
statement is dynamic...