Create a Three Table Viewer

Asked

Viewed 48 times

0

How to create a view in mysql with 3 tables

being the following structure

cliente
  |id_cliente
  |nome_cliente

produto
  |id_produto
  |nome_produto
  |valor_produto

pedido
  |id_pedido
  |id_produto
  |id_cliente

would like to create a view with the following structure

vw_pedido
  |id_vw_pedido
  |id_cliente_vw_pedido
  |nome_cliente_vw_pedido
  |id_produto_vw_pedido
  |nome_produto_vw_pedido
  |valor_produto_vw_pedido
  • It is a select with Join of the related fields.

  • Okay, thank you so much Rray, could you help me in another post?

  • Which one? has the link there

  • http://answall.com/questions/133798/emitir-extrato-de-servi%C3%A7os

1 answer

3


It would be more like that the select of your View..

SELECT PEDIDO.ID_PEDIDO,
CLIENTE.ID_CLIENTE,
CLIENTE.NOME_CLIENTE,
PRODUTO.ID_PRODUTO,
PRODUTO.VALOR_PRODUTO
FROM PEDIDO, CLIENTE, PRODUTO
WHERE 1=1
AND PRODUTO.ID_PRODUTO = PEDIDO.ID_PRODUTO
AND CLIENTE.ID_CLIENTE = PEDIDO.ID_CLIENTE

Browser other questions tagged

You are not signed in. Login or sign up in order to post.