"Andrus Moor" <[EMAIL PROTECTED]> writes:
> UPDATE demo.toode
>         SET "liik"=NULL,            "grupp"=NULL
>        WHERE ("grupp",        "liik") NOT IN
>         (SELECT ("grupp",          "liik") FROM          "artliik")
> ERROR:  operator does not exist: character = record

> How to write this UPDATE statement properly ? 

Hmm ... Postgres wants it without the innermost parentheses:
         (SELECT "grupp", "liik" FROM          "artliik")

Offhand though I am not certain whether the way you wrote it is supposed
to be allowed according to the SQL spec.  Does anyone think this should
have worked, and if so what's the chapter and verse that says so?

                        regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster

Reply via email to