Jump to content
Fórum Script Brasil
  • 0

Update + Inner Join


Raposo

Question

Prezados,

Estou com uma dificuldade com o Inner Join + Update, segue o code:

conexao.execute("update CAT_PROD x INNER JOIN CAT_CES y ON y.ces_prod_cat = x.prod_cod SET SUM(x.prod_estoq-y.ces_qtde)")

Erro:

Microsoft JET Database Engine error '80040e14'

Syntax error in UPDATE statement.

Desde já agradeço

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0
Prezados,

Estou com uma dificuldade com o Inner Join + Update, segue o code:

conexao.execute("update CAT_PROD x INNER JOIN CAT_CES y ON y.ces_prod_cat = x.prod_cod SET SUM(x.prod_estoq-y.ces_qtde)")

Erro:

Microsoft JET Database Engine error '80040e14'

Syntax error in UPDATE statement.

Desde já agradeço

Bom dia Raposo.

Cara, entendi o que você precisa, mas acredito que desta forma não irá conseguir fazer.

A sintaxe para update utilizando join é a seguinte:

update X set X.Campo = <ValorDesejado>

from CAT_PROD X

inner join CAT_CES Y

on ( Y.ces_prod_cat = X.prod_cod)

Para o caso em questão, acho melhor jogar o valor para variáveis e dar update na tabela X.

Fica a dica. ;)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...