Jump to content
Fórum Script Brasil
  • 0

Dúvida a respeito de multi select


daniel marques

Question

Bom dia !

alguém poderia me ajudar com essa sintax por favor? sou novo em mysql. Bom a minha dúvida é a respeito dessa sintax,

" select tbpedido_venda.codped , tbcliente.nome , tbpqp.produto , tbpqp.qtd

e , tbpedido_venda.valt , formpag.fomap , formpag.valp where tbpedido_venda.data

ped='20121127' and tbcliente.codcli = tbpedido_venda.fk_cliente_codcli and tbpqp.fk_

pedido_venda = tbpedido_venda.codped and formpag.fk_pedido_venda = tbpedido_venda; "

não entendi por que não deu certo.

Obrigado desde já.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

A sintaxe correta seria:

SELECT tbpedido_venda.codped , tbcliente.nome , tbpqp.produto , tbpqp.qtde , tbpedido_venda.valt , formpag.fomap , formpag.valp 
FROM tbpedido_venda
INNER JOIN tbcliente ON tbcliente.codcli = tbpedido_venda.fk_cliente_codcli
INNER JOIN tbpqp ON tbpqp.fk_pedido_venda = tbpedido_venda.codped
INNER JOIN formpag ON formpag.fk_pedido_venda = tbpedido_venda
WHERE tbpedido_venda.dataped='20121127';

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...