You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
UPDATE "public"."E_edgeToRoot" a
SET
("className") =
(v."className")
FROM (
VALUES
(1, 'thisthatandanother')
) AS v(id, "className")
WHERE a."ID" = v.id
If there is only one property then the set statement must not have any parenthesis.
The following works.
UPDATE "public"."E_edgeToRoot" a
SET
"className" =
v."className"
FROM (
VALUES
(1, 'thisthatandanother')
) AS v(id, "className")
WHERE a."ID" = v.id
The following query breaks on postgresql 10
If there is only one property then the
set
statement must not have any parenthesis.The following works.
Describe here http://www.postgresql-archive.org/Re-PostgreSQL-10-parenthesized-single-column-updates-can-produce-errors-td5989984.html
The text was updated successfully, but these errors were encountered: