我有一個臨時表「temp」,其中有一些數據,我希望與另一個表ip_geo_data_location進行映射。我希望從另一個表中生成位於temp中的location_id,並提供如下條件: 錯誤如下:「錯誤:Teradata執行:應使用定義的別名名稱而不是表名temp。」SAS/SQL使用Teradata.UPDATE語法
update temp
from temp a, ip_geo_data_location b
set a.location_id=b.location_id
where a.ablock=b.ip_start_1
and a.bblock=b.ip_start_2
and a.ip_integer between b.ip_start and b.ip_end;
謝謝..工作:) – Japheth