syntax:
update table t_table
set c_column = (case when p = x then y else z end );
I couldn't compile such a statement.
Is this syntax supported ???????????
If not , does anybody know when will it be supported.
for now I am using a workaround: the execute immediate statement but its very dificult for maintenance .
Thanks
update table t_table
set c_column = (case when p = x then y else z end );
I couldn't compile such a statement.
Is this syntax supported ???????????
If not , does anybody know when will it be supported.
for now I am using a workaround: the execute immediate statement but its very dificult for maintenance .
Thanks