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.
– rray
Okay, thank you so much Rray, could you help me in another post?
– Cristiano Cardoso Silva
Which one? has the link there
– rray
http://answall.com/questions/133798/emitir-extrato-de-servi%C3%A7os
– Cristiano Cardoso Silva