User-335504541 posted
<g class="gr_ gr_9 gr-alert gr_gramm gr_inline_cards gr_run_anim Punctuation only-ins replaceWithoutSep" id="9" data-gr-id="9">Hi</g> <g class="gr_ gr_10 gr-alert gr_spell gr_inline_cards gr_disable_anim_appear ContextualSpelling" id="10" data-gr-id="10">shsu</g>,
Are you using Oracle right?
It seems Oracle does not allow joining tables in an UPDATE statement. You need to rewrite your statement with a co-related sub-select.
For example:
UPDATE T_CHARACTERISTICS
SET T_CHARACTERISTICS.PROCESS = (select T_DOC.PROCESS
FROM T_CHARACTERISTICS
where T_CHARACTERISTICS.ID = T_DOC.ID)
You could refer to the link below for more information:
https://stackoverflow.com/questions/8940471/sql-error-ora-00933-sql-command-not-properly-ended
Best Regards,
Billy