Apache Spark SQL是否支持與Oracle的MERGE SQL子句類似的MERGE子句? MERGE into <table> using (
select * from <table1>
when matched then update...
DELETE WHERE...
when not matched then insert...
)
我試圖用JDBCUtils截斷表從星火postgre_table,但它拋出下面的錯誤 < console>:71: error: value truncateTable is not a member of object org.apache.spark.sql.execution.datasources.jdbc.JdbcUtils val trucate_table = JdbcUtils.t