t:([] col1:`aa`bb`cc;col2:`aaa`bbb`ccc);
field1:`col1;
field2:`col2;
v1:`aa;
v2:`aaaa;
I want same result by functional update as
update col2:`aaaa from t where col1=`aa;
I tried
![t;enlist (=;field1;enlist v1);0b;(enlist field2)!(enlist v2)];
but it give me an error 'aaaa
appreciate if some one can help.