How do I create a view in mysql by taking data from 2 or more different tables?

Asked

Viewed 37 times

-1

To Starting to see View in database now, more has arisen a doubt in this exercise, I have to view items from 3 different tables but do not know how.

1 answer

0


You should have put what you’ve done.

As you’re new I’ll answer below but make a tour on how to use this site.

CREATE VIEW ProdutosPendentes AS 
SELECT LstCompras.NmLstCompras, GrpProduto.NmGrpProduto, Produto.NmProduto 
  FROM Produto  INNER JOIN GrpProduto ON (Produto.CdGrpProduto = GrpProduto.CdGrpProduto)
                    INNER JOIN Anota ON (Produto.CdProduto = Anota.CdProduto)
                    INNER JOIN LstCompras ON (Anota.CdLstCompras = LstCompras.CdLstCompras)
  WHERE Anota.InCompra = ' '
  ORDER BY LstCompras.NmLstCompras ASC, GrpProduto.NmGrpProduto ASC, Produto.NmProduto ASC;

Browser other questions tagged

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