1. update (select .....) set column1 = column2;update (select iy.company_name company_name1, cc.company_name_jc compan
1。更新(选择.....)设置column1 =column2;
更新(从 Income_year_item iy 、 city_company cc
中选择 iy.company_name 公司名称1、cc.company_name_jc 公司名称2
,其中 iy.company_code = cc.code
)
set company_name1 = company_name2;
2.只能单行子查询
更新 CITY_PROJECT_SCALE_INFO c set
(c.value) = (
从 CITY_PROJECT_SCALE_INFO @test d 选择 d.value,其中 d.project_id = '7d7fd580a06240b2a9137dc2bbe831e9'
和 d.project_id = c.project_id 和 c .company_code = d.company_code
)
存在(
从 CITY_PROJECT_SCALE_INFO @test d 中选择 1,其中 d.project_id = '7d7fd580a06240b2a9137dc2bbe831e9'
和 d.project_id = c.project_id 和 c.company_code = d.company_code
)
3.使用merg inot语句
--更新生产基础字段
使用
city_cfg_data_column_common2 cf2 合并到
(cf1.resourceid = cf2.resourceid)
匹配时
更新集 cf1.template_type = cf2.template_type,
cf1.chinese_name = cf2.chinese_name,
cf1.column_name = cf2.column_name,
cf1.column_type = cf2.column_type,
cf1.column_size = cf2.column_size
不匹配时
插入 (cf1.resourceid,cf1.template_type,cf1.chinese_name,cf1.column_name,cf1.column_type,cf1.column_size
,cf1.is_can_edit,cf1.is_unique,cf1.is_can_cover,cf1. show_order)
值 (cf2.resourceid,cf2.template_type,cf2.chinese_name,cf2.column_name,cf2.column_type,cf2.column_size
,cf2.is_can_edit,cf2.is_unique,cf2.is_can_cover,cf2.show_order)