inner join etl_telco_cycle on (telco_document_header.customer_number like '%' || etl_telco_cycle.customer_numberinterval '1 month' as varchar) from 1 for 4) || substring(cast(now() - interval '1 month' as varchar) from 6etl_telco_cyc
我们正在开发ETL作业,我们的顾问在连接表时一直在使用“旧式”SQLfrom table1 a, table2 b
where a.attr2 = b.attr2我们的平台是SQL Server,我的主要原因是将来不再支持这些"where joins“。当这种情况发生时,我们必须使用“内部连接”风格的连接来修改所有的ETL作业。