Oracle modify the value of field A in the table to field B

Example: Modify the value of the IMPORT_DATE field in the T_PROJECT_SALE_OPT table to the IMPORTDATE field

update T_PROJECT_SALE_OPT t set t.IMPORT_DATE=t.IMPORTDATE where 1 = 1;

Guess you like

Origin blog.csdn.net/liangmengbk/article/details/109157187