select obj_uid, gis_code, obj_detailgiscode from tmp_object
select obj_uid, gis_code, obj_detailgiscode from temp_object
--MSSQL
update temp_object set gis_code = t1.gis_code, obj_detailgiscode = t1.obj_detailgiscode
from tmp_object t1, temp_object t2
where t1.obj_uid = t2.obj_uid
--ORACLE
update temp_object t2 set (gis_code, obj_detailgiscode) = (select gis_code, obj_detailgiscode from tmp_object t1 where t1.obj_uid = t2.obj_uid)
JOIN을 통한 UPDATE
|
2005.05.13 17:21:41
|
2005.05.13 17:21:41
|
342
|
Aiden
Total of Attached file
0.00 Bytes of 0 files
2006.09.11
2006.04.10
2005.10.21
2005.05.22
2005.05.21
2005.05.13
2005.05.04
2005.05.02
2005.03.31
2005.03.23
2005.02.28