您可以在 Matillion 中创建 SQL 更新语句吗?
Can you create a SQL Update statement in Matillion?
我正在尝试在 Matillion 的 SQL 组件中创建更新语句,但是我在 SET 中遇到语法错误。
UPDATE matchingmanufacturernofulllast2
SET "matchingmanufacturernofulllast2.available" = 'f'
where listprice is not null
ERROR: syntax error at or near "SET"
Position: 88
Matillion sql 组件是否能够使用 sql UPDATE 语法?
问候
康特
在 Matillion 中创建带有 where 子句的更新语句的一个选项是使用 calculator component in conjuction with a case expression
CASE
WHEN ("listprice" is not null)
THEN 'F'
END
为 DDL 使用 SQL orchestration 组件。 SQL transformation 组件仅适用于 Select。
我正在尝试在 Matillion 的 SQL 组件中创建更新语句,但是我在 SET 中遇到语法错误。
UPDATE matchingmanufacturernofulllast2
SET "matchingmanufacturernofulllast2.available" = 'f'
where listprice is not null
ERROR: syntax error at or near "SET"
Position: 88
Matillion sql 组件是否能够使用 sql UPDATE 语法?
问候 康特
在 Matillion 中创建带有 where 子句的更新语句的一个选项是使用 calculator component in conjuction with a case expression
CASE
WHEN ("listprice" is not null)
THEN 'F'
END
为 DDL 使用 SQL orchestration 组件。 SQL transformation 组件仅适用于 Select。